python循环中使用break语句终止循环,pythonbreak,#!/usr/bin/p


#!/usr/bin/python# Filename: break.pywhile True:    s = raw_input('Enter something : ')    if s == 'quit':        break    print 'Length of the string is', len(s)print 'Done'
                                输出结果
$ python break.pyEnter something : Programming is funLength of the string is 18Enter something : When the work is doneLength of the string is 21Enter something : if you wanna make your work also fun:Length of the string is 37Enter something :       use Python!Length of the string is 12Enter something : quitDone
                                它如何工作

在这个程序中,我们反复地取得用户地输入,然后打印每次输入地长度。我们提供了一个特别的条件来停止程序,即检验用户的输入是否是'quit'。通过 终止 循环到达程序结尾来停止程序。

输入字符串的长度通过内建的len函数取得。

记住,break语句也可以在for循环中使用。

G2的Python诗

我在这里输入的是我所写的一段小诗,称为G2的Python诗:

Programming is; fun;When the; work; is; done;if you; wanna; make; your; work; also; fun;: use; Python;!

评论关闭