2018年5月9日
摘要: import turtle turtle.setup(800,400,0,0) turtle.bgcolor('purple') turtle.color("blue") turtle.fillcolor("red") turtle.begin_fill() for i in range(5): t 阅读全文
posted @ 2018-05-09 20:17 苏俊康 阅读(119) 评论(0) 推荐(0) 编辑
摘要: number = 23 while True: guess = int(input('请输入一个数字:')) if guess > number: print('>') elif guess < number: print('<') else: print('=') break import... 阅读全文
posted @ 2018-05-09 20:13 苏俊康 阅读(68) 评论(0) 推荐(0) 编辑