Commit 0d9daaf0 by BellCodeEditor

auto save

parent ac72bd25
Showing with 38 additions and 2 deletions
...@@ -12,4 +12,8 @@ def qq(): ...@@ -12,4 +12,8 @@ def qq():
else: else:
total.append(unit) total.append(unit)
print(total) print(total)
qq() def sum(money):
\ No newline at end of file count=0
for i in money:
count=count+1
return count
\ No newline at end of file
import turtle
import turtle
p=turtle.Pen()
p.shape("circle")
p.penup()
p.goto(0,-200)
p.pendown()
p.circle(200)
p.fillcolor("red")
p.penup()
p.goto(-100,50)
p.pendown()
p.begin_fill()
p.circle(20)
p.end_fill()
p.penup()
p.goto(100,50)
p.pendown()
p.begin_fill()
p.circle(20)
p.end_fill()
p.penup()
p.goto(0,50)
p.pendown()
p.circle(-50,steps=3)
p.penup()
p.goto(-150,-70)
p.pendown()
p.goto(0,-170)
p.goto(150,-70)
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