Commit 6dd2265e by BellCodeEditor

auto save

parent e94b12dc
import turtle
pen = turtle.Pen()
pen.shape("turtle")
turtle.done()
\ No newline at end of file
import turtle
pen = turtle.Pen()
pen.setpos(-200,0)
pen.shape("turtle")
pen.color("red")
pen.speed(1000)
pen.fillcolor("yellow")
pen.begin_fill()
for i in range(72):
pen.forward(400)
pen.right(175)
for i in range(360):
pen.forward(1.7444)
pen.right(1)
pen.end_fill()
pen.hideturtle()
turtle.done()
\ No newline at end of file
name = "悟空 " name = "悟空 "
name = "悟空 " name = "悟空 "
word = "?" word = "非常感谢"
print(name+word) print(name+word)
\ No newline at end of file
num = 9 num = 9
...@@ -2,7 +2,3 @@ num = 9 ...@@ -2,7 +2,3 @@ num = 9
float_num = 3.1415926 float_num = 3.1415926
name = "悟空" name = "悟空"
goods = ["雪碧","可口可乐","咖啡"] goods = ["雪碧","可口可乐","咖啡"]
print(type(num))
print(type(float_num))
print(type(name))
print(type(goods))
\ 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