python简单猜数游戏实例

yipeiwu_com5年前Python基础

本文实例讲述了python简单猜数游戏。分享给大家供大家参考。具体实现方法如下:

#!/usr/bin/env python
import random
number = random.randint(0,100)
print "Hello,Number guessing Game: betwween 0 and 100 inclusive."
guessString = raw_input("guess a number: ")
guess = int(guessString)
while 0 <= guess <= 100:
  if guess > number:
    print "Guessed Too High,please guess again!."
  elif guess < number:
    print "Guessed Too Low,please guess again!."
  else:
    print "You guessed it. The number was:",number
    break
  guessString = raw_input("Guess a number: ")
  guess = int(guessString)
else:
  print "Your guess was not between 0 and 100,the game is over,the number was:",number

希望本文所述对大家的Python程序设计有所帮助。

相关文章

用Python中的__slots__缓存资源以节省内存开销的方法

用Python中的__slots__缓存资源以节省内存开销的方法

我们曾经提到,Oyster.com的Python web服务器怎样利用一个巨大的Python dicts(hash table),缓存大量的静态资源。我们最近在Image类中,用仅仅一行...

解决python3中cv2读取中文路径的问题

如下所示: python3: img_path =  ' ' im = cv2.imdecode(np.fromfile(img_path,dtype = np.uin...

python脚本实现音频m4a格式转成MP3格式的实例代码

python脚本实现音频m4a格式转成MP3格式的实例代码

前言 群里看到有人询问:谁会用python将微信音频文件后缀m4a格式转成mp3格式,毫不犹豫回了句:我会。 然后就私下聊起来了 解决方法介绍如下: 工具:windows系统,pytho...

python中利用zfill方法自动给数字前面补0

python中利用zfill方法自动给数字前面补0

python中有一个zfill方法用来给字符串前面补0,非常有用 view sourceprint? n = "123" s = n.zfill(5) assert s...

pytorch加载自定义网络权重的实现

在将自定义的网络权重加载到网络中时,报错: AttributeError: 'dict' object has no attribute 'seek'. You can only tor...