Commit 75bfc08c by BellCodeEditor

save project

parent 7abaecb1
Showing with 31 additions and 6 deletions
name = "悟空 "
word = "非常感谢"
print(name+word)
\ No newline at end of file
num = 9
float_num = 3.1415926
name = "悟空"
goods = ["雪碧","可口可乐","咖啡"]
print(type(num))
print(tybe(float_num))
print(tybe(name))
print(tybe(goods))
\ No newline at end of file
print("hello word")
\ No newline at end of file
import turtle
p = turtle.Pen()
p.fillcolor("red")
p.begin_fill()
for i in range(5):
p.forward(200)
p.left(144)
p.end_fill()
turtle.done()
\ No newline at end of file
import turtle
p = turtle.Pen()
p.shape('turtle')
p.forward(200)
p.left(45)
p.forward(200)
turtle.done()
\ No newline at end of file
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