Commit 390dc5ab by BellCodeEditor

auto save

parent 012d5632
Showing with 51 additions and 4 deletions
message = "诺依,周末一起去看动漫展吧!"
# while True:
# xingqi=input('今天星期几呀?')
# if xingqi=='星期三':
# print('今天学编程,你个**')
# if xingqi=='星期一':
# print('今天学钢琴,你个**')
# if xingqi=='星期六':
# print('今天学英语,你个**')
# if xingqi=='星期四' or '星期二' or '星期五' or '星期日':
# print('今天学国学,你个**')
# else:
# print('打错了,你配吗,你个大**')
name=['🍎','🍌','🍇','🍉','🍅','🍑','🍈','🍋','🍊']
# print(name[3:-1])
import turtle
pen=turtle.Pen()
pen.penup()
pen.goto(-110,0)
pen.pendown()
pen.color('blue')
pen.pensize(5)
pen.circle(50)
pen.penup()
pen.forward(110)
pen.pendown()
pen.color('black')
pen.pensize(5)
pen.circle(50)
pen.penup()
pen.forward(110)
pen.pendown()
pen.color('red')
pen.pensize(5)
pen.circle(50)
pen.penup()
pen.goto(-55,-70)
pen.pendown()
pen.color('yellow')
pen.pensize(5)
pen.circle(50)
pen.penup()
pen.forward(110)
pen.pendown()
pen.color('green')
pen.pensize(5)
pen.circle(50)
pen.hideturtle()
turtle.done()
# 请使用索引的知识,取出message所有元素(不用遍历的方式)
print(message[:])
\ 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