# in 和 not in 运算符
# 用来判断一个内容在可迭代对象里是否存在
word = 'hello'
x = input('请输入一个字符:')
# 判断用户输入的字符在字符串里是否存在
# for c in word:
# if x == c:
# print('存在')
# break
# else:
# print('不存在')
#
# if word.find(x) == -1:
# print('不存在')
# else:
# print('存在')
#
if x in word:
print('存在')
else:
print('不存在')
if x not in word:
print('不存在')
else:
print('存在')
格式化打印字符串
# 可以使用 % 占位符来表示格式化一个字符串
name = 'zhangsan'
age = 18
print('大家好,我的名字是', name, ',我今年', age, '岁了', sep='')
#在字符串里可以使用%占位符
#%s ==> 表示的是字符串的占位符