题解 | #字符串字符匹配#
字符串字符匹配
http://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93
# import sys while True: try: shorts = input() longs = input() allin = "true" for c in shorts: if c not in longs: allin = "false" break print(allin) except: # print(sys.exc_info()) break