文件名称:python 小例子
文件大小:378B
文件格式:PY
更新时间:2016-01-25 06:21:03
python example 实例
while 使用example#!/usr/bin/python num = 10 run = True while run: guess = int(raw_input('Enter input : ')) if guess == num: print 'Congratulations, you guessed it.' run = False elif guess < num: print 'No, it is a little higher than that.' else: print 'No, it is a little lower than that.' else: print 'The whole loop is over.' print 'Done'