为什么这无效?

时间:2019-04-23 14:59:31

标签: python printing

这是我的代码

import math

names=('Jhon','Aidan','Bob','Nik')

people=input('Name: ')
if people is names:
    print("Get Ready")
else print("This ain't your test")

并在其他情况下打印无效

1 个答案:

答案 0 :(得分:0)

使用代替您需要检查列表中是否包含该名称,否则检查冒号

people=input('Name: ')
if people in names:
    print("Get Ready")
else:
    print("This ain't your test")