题解 | 俱乐部的成员
俱乐部的成员
https://www.nowcoder.com/practice/3456ee52540c4efb8b39e42f0ec4b927
import sys
club = str(input())
club = club.split(' ')
print(str(input()) in club)
# in // not in
俱乐部的成员
https://www.nowcoder.com/practice/3456ee52540c4efb8b39e42f0ec4b927
import sys
club = str(input())
club = club.split(' ')
print(str(input()) in club)
# in // not in
相关推荐