摘要: import turtle turtle.setup(600,400,0,0) turtle.bgcolor('red') turtle.color('yellow') turtle.fillcolor('yellow') turtle.begin_fill() for i in range(5): turtle.forward(100) turtle.left(144) t... 阅读全文
posted @ 2018-05-07 16:39 katherine9 阅读(216) 评论(0) 推荐(0) 编辑
摘要: myNum = 4 print('猜数字游戏\n') while True: guess = int(input('请猜一个数:')) if guess > myNum: print('猜大了') elif guess < myNum: print('猜小了') else: print('恭喜你,猜对了... 阅读全文
posted @ 2018-05-07 15:38 katherine9 阅读(170) 评论(0) 推荐(0) 编辑
摘要: import turtle # 设置初始位置 turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) # 花蕊 turtle.fillcolor("red") turtle.begin_fill( 阅读全文
posted @ 2018-05-07 15:24 katherine9 阅读(116) 评论(0) 推荐(0) 编辑