Commit 72a79f52 by BellCodeEditor

save project

parent 1a4a8a47
Showing with 33 additions and 0 deletions
conut = 0
while True:
print("conut的值为:"+str(conut))
if conut == 5:
continue
if conut == 10:
break
conut += 1
break
print("程序结束")
\ No newline at end of file
import turtle
p = turtle.Pen()
p.speed(100)
distance = 1
for i in range(300):
p.forward(distance)
p.right(91)
distance += 1
turtle.done()
i=0
while i<=10:
if i%2 = 0:
print(i)
i+ = 1
else:
i+ = 1
num=0
while num<20:
if num%2 ==1:
print(num)
num+=1
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