题解 | #增加派对名单(二)#
增加派对名单(二)
https://www.nowcoder.com/practice/cc57f3f2ea274489b1ead14a9ddcee64
names=input().split()
if "Allen" not in names:
names.insert(0,"Allen")
print(names)
增加派对名单(二)
https://www.nowcoder.com/practice/cc57f3f2ea274489b1ead14a9ddcee64
names=input().split()
if "Allen" not in names:
names.insert(0,"Allen")
print(names)
相关推荐