题解 | #字符串字符匹配#
字符串字符匹配
http://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93
'''
注意
for
...
else
...
的组合用法
'''
str1 = list(input())
str2 = list(input())
for i in str1:
if i not in str2:
print('false')
break
else:
print('true')
注意
for
...
else
...
的组合用法
'''
str1 = list(input())
str2 = list(input())
for i in str1:
if i not in str2:
print('false')
break
else:
print('true')
【牛客站内】华为机试题—简单 文章被收录于专栏
【牛客站内】华为机试题练习记录