码迷,mamicode.com
首页 > 其他好文 > 详细

猜数字

时间:2018-04-28 18:02:11      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:技术分享   int   goto   bit   win32   edits   tle   64 bit   inf   

Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import turtle
>>> turtle.circle(50)
>>> turtle.circle(100)
>>> 

  技术分享图片

Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import turtle
>>> turtle.circle(50)
>>> turtle.circle(100)
>>> turtle.goto(0,-100)
>>> turtle.circle(200)
>>> turtle.up()

技术分享图片

myNum = 7 print(‘猜数字游戏\n‘) while True: guess = int(input(‘请猜一个数:‘)) if guess > myNum: print(‘猜大了‘) elif guess < myNum: print(‘猜小了‘) else: print(‘恭喜你,猜对了!‘) break

  技术分享图片

猜数字

标签:技术分享   int   goto   bit   win32   edits   tle   64 bit   inf   

原文地址:https://www.cnblogs.com/Paris-YY/p/8968683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!