当前位置: 首页 > 图灵资讯 > 行业资讯> python使用语句的常见陷阱

python使用语句的常见陷阱

来源:图灵python
时间: 2024-06-30 20:34:11

1、冗余input语句的冗余使用是有效的,但通常被认为是一种不好的风格。

data=input("Pleaseenteraloudmessage(mustbeallcaps):")
whilenotdata.isupper():
print("Sorry,yourresponsewasnotloudenough.")
data=input("Pleaseenteraloudmessage(mustbeallcaps):")

它最初可能看起来很有吸引力,因为它比while更有吸引力 True的方法很短,但它违反了软件开发不重复自己的原则。这增加了系统中出错的可能性。如果你想通过改变input移植到2.7input,不小心只改变了第一input上面?这个SyntaxEror只是在等待发生。

2、递归会破坏堆栈,用户输入无效数据的次数足够多就会出错。

如果你刚刚了解递归,你可能想用它来获得_non_negative_int来处理 while 循环。

defget_non_negative_int(prompt):
try:
value=int(input(prompt))
exceptValueError:
print("Sorry,Ididn'tunderstandthat.")
returnget_non_negative_int(prompt)

ifvalue<0:
print("Sorry,yourresponsemustnotbenegative.")
returnget_non_negative_int(prompt)
else:
returnvalue

在大多数情况下,这似乎是正常的,但如果用户输入足够多的无效数据,脚本将使用Runtimeerrorororororororor: maximum recursion depth exceeded. 你可能会认为“没有傻瓜会连续犯1000个错误”,但你低估了傻瓜的智慧!

以上是python使用语句的常见陷阱,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。