python零基础走起

来源:互联网 发布:苹果笔记本如何装mac 编辑:程序博客网 时间:2024/06/02 15:56
今天电脑下载了python,就写了一个小程序
import randomprint("第一次接触python发现好像matlab...")temp=random.randint(1,7)num=input("你猜这是几,你有3次机会:")guess=int(num)i=0while(i<3):    if guess==temp:       print("对了,你赢了")       break    else:        if guess>temp:            print("大了")        if guess<temp:            print("小了")    num=input("继续猜:")    guess=int(num)    i+=1print("游戏结束.")


下面是运行结果:

Python 3.4.0 (default, Apr 11 2014, 13:05:11)
[GCC 4.8.2] on linux
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>>
第一次接触python发现好像matlab...
你猜这是几,你有3次机会:3
大了
继续猜:2
对了,你赢了
游戏结束.
>>>

0 0
原创粉丝点击