摘要: >>> 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(200)... 阅读全文
posted @ 2018-05-07 16:58 youuoy 阅读(133) 评论(0) 推荐(0)
摘要: while True: a = int(input('请猜一个100以内的数:')) if a>43: print('你猜的太大了') elif a>> import turtle >>> turtle.circle(50) >>> turtle.circle(100) >>> turtle.done() >>> import turtle >... 阅读全文
posted @ 2018-05-07 16:19 youuoy 阅读(153) 评论(0) 推荐(0)