请看下列代码,若想要输出 yes,可以输入的内容是?
s = input('请输入:')
if s == s[::-1]:
print('yes')
else:
print('no')
level
yes
no
hahaha