Commit 4dd8b29b by BellCodeEditor

auto save

parent cc3a4859
Showing with 32 additions and 0 deletions
a=10
b=0
while a<100:
if not a//10==a%10:
b+=1
a+=1
print(b)
import turtle
i=turtle.Pen()
i.shape("turtle")
i.pensize(5)
i.color("red","black")
i.speed(1000000)
a=20
while True:
if a>340:
break
else:
i.forward(a)
i.right(90)
a=a+4
turtle.done()
\ No newline at end of file
a=input("输入一个数字:")
b=input("输入一个字符:")
c=int(a)
for i in range(c):
print(b)
\ 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