摘要: 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): 阅读全文
posted @ 2018-05-07 16:41 金丽娜 阅读(121) 评论(0) 推荐(0) 编辑
摘要: myNum=10 print('猜我多少岁\n') while True: guess = int(input('请输入一个数字:')) if guess > myNum: print('猜大了') elif guess < myNum: print('猜小了') else: print('恭喜你,猜对了!请到讲台... 阅读全文
posted @ 2018-05-07 15:54 金丽娜 阅读(573) 评论(0) 推荐(0) 编辑