标签:python
练习1
让用户一直输入数字,如果输入的不是数字就报错,如果输入pc就退出并算出数字之和
#!/usr/bin/evn python total = 0 while True: input = raw_input(‘input something: ‘) if input.isdigit(): total += int(input) elif input == ‘pc‘: break else: print "error" print total
本文出自 “不抛弃!不放弃” 博客,请务必保留此出处http://thedream.blog.51cto.com/6427769/1725722
标签:python
原文地址:http://thedream.blog.51cto.com/6427769/1725722