Commit 75bfc08c by BellCodeEditor

save project

parent 7abaecb1
Showing with 31 additions and 6 deletions
name = "悟空 " num = 9
word = "非常感谢" float_num = 3.1415926
print(name+word) name = "悟空"
\ No newline at end of file goods = ["雪碧","可口可乐","咖啡"]
print(type(num))
print(tybe(float_num))
print(tybe(name))
print(tybe(goods))
\ No newline at end of file
print("hello word") import turtle
\ No newline at end of file
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