作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
<分区>
我错误地用 Python 编写了这段代码:
name = input("what is your name?")
if name == "Kamran" or "Samaneh":
print("That is a nice name")
else:
print("You have a boring name ;)")
即使输入既不是“Kamran”也不是“Samaneh”,它总是打印出“That is a nice name”。
我说它认为“Samaneh”是真的吗?为什么?
顺便说一句,我已经注意到了我的错误。正确的形式是:
if name == "Kamran" or name == "Samaneh":
我是一名优秀的程序员,十分优秀!