Commit 7796601f by BellCodeEditor

save project

parent 8dfa7f6e
Showing with 23 additions and 3 deletions
#bro0="关羽"
#bro1="刘备"
#bro2="张飞"
#bros=["关羽","刘备","张飞"]
#bro0=["关羽",161,9.1]
#bro1=["刘备",160,8.5]
#bro2=["张飞",166,8.3]
#bros[0]="关羽"
#bros[1]="刘备"
#print(bros)
a=['华雄']
c=["颜良",'文丑']
a.extend(c)
print(a)
a=['华雄']
c=['关羽']
a.extend(c)
print(a)
......@@ -2,10 +2,11 @@
请使用turtle模块画出五角星
"""
import turtle
open=turtle.pen()
For i in range(5)
pen.fillcolor("red")
For i in range(3):
pen.forward(200)
pen.right(144)
pen.right(170)
pen.hideturtle()
pen.end_fill
pen.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