编程语言
首页 > 编程语言> > python 2nd 条件控制之while语句

python 2nd 条件控制之while语句

作者:互联网

实例

while True:
    s = input('Enter something : ')
    if s == 'quit':
        break
    print('Length of the string is', len(s))
print('Done')

实例

while True:
    s = input('Enter something : ')
    if s == 'quit':
        break
    else:
        print('Length of the string is', len(s)) 
print('Done')

 

 

实例  猜数字  while语句

number = 23
running = True
while running:
    guess = int(input('Enter an integer : '))
    if guess == number:
        print('Congratulations, you guessed it.')
# 这将导致 while 循环中止
        running = False
    elif guess < number:
        print('No, it is a little higher than that.')
    else:
        print('No, it is a little lower than that.')
else:
        print('The while loop is over.')
# 在这里你可以做你想做的任何事
print('Done')

 

标签:guess,python,number,2nd,while,print,input,True
来源: https://www.cnblogs.com/xsgg/p/15196558.html