python循环中使用break语句终止循环,pythonbreak,#!/usr/bin/p
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;!
相关内容
- python for each遍历字典,pythoneach,D = {'a':1,
- python中使用列表代码演示,python列表代码演示,#!/usr/b
- python 中文件路径和url的相互转换,python相互转换,impo
- python获得当前上网的ip地址,python获得当前ip,import url
- python里的map函数替代循环的范例演示,pythonmap,def add1
- python 使用socket远程发送命令并获得执行结果,pythonso
- python将英文单词表示的数字转换成阿拉伯数字,python阿
- python3计算常数e,python3常数e,import math
- python简单的计算过期时间的代码,python计算过期时间
- python从文件读取文本,python读取文本,# get conten
评论关闭