Commit 35c8d7ed by BellCodeEditor

save project

parent e3bf9ea9
Showing with 7 additions and 23 deletions
name=input("chacha")
print(name+"nihaoa")
\ No newline at end of file
import turtle
pen = turtle.Pen()
pen.fillcolor("red")
pen.begin_fill()
pen.forward(100)
pen.left(90)
pen.forward(100)
pen.goto(0,0)
pen.end_fill()
pen.fillcolor("black")
pen.begin_fill()
pen.forward(100)
pen.right(90)
pen.forward(100)
pen.end_fill()
turtle.done()
\ No newline at end of file
import random
number=int(input(" "))
computer=int(random(0,10))
if number<computer:
print("small")
if number>computer:
print("big")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment