这是我的代码
import math
names=('Jhon','Aidan','Bob','Nik')
people=input('Name: ')
if people is names:
print("Get Ready")
else print("This ain't your test")
并在其他情况下打印无效
答案 0 :(得分:0)
使用代替您需要检查列表中是否包含该名称,否则检查冒号
people=input('Name: ')
if people in names:
print("Get Ready")
else:
print("This ain't your test")