# 请用户输入内容,要求:筛选出里边的关键字,如果包含 ,就循环输入;否则 ,输出内容
while True:
a = input ('请输入内容:')
if '是' in a:
print('包含关键字!!!')
else :
print (a)
break