题解 | 俱乐部的成员
俱乐部的成员
https://www.nowcoder.com/practice/3456ee52540c4efb8b39e42f0ec4b927
name = input().split() target = input() found = False for i in name: if target == i: found = True break print(found)
俱乐部的成员
https://www.nowcoder.com/practice/3456ee52540c4efb8b39e42f0ec4b927
name = input().split() target = input() found = False for i in name: if target == i: found = True break print(found)
相关推荐