Commit 83b11bac by BellCodeEditor

auto save

parent 992dc365
Showing with 18 additions and 3 deletions
...@@ -4,5 +4,5 @@ def aa(): ...@@ -4,5 +4,5 @@ def aa():
for i in range(4): for i in range(4):
t.forward(100) t.forward(100)
t.left(90) t.left(90)
turtle.done() aa()
aa() turtle.done()
\ No newline at end of file \ No newline at end of file
count=0
while count<9:
count=count+1
print(count)
\ No newline at end of file
i=2
sum=0
while i<=100:
if i%2==0:
sum-=i
else:
sum+=i
i+=1
print('sum:',sum)
\ 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