题解 | #增加派对名单(二)#
增加派对名单(二)
https://www.nowcoder.com/practice/cc57f3f2ea274489b1ead14a9ddcee64
s = input().split(" ") lst = [] for i in s: lst.append(i) lst.insert(0, "Allen") print(lst)
增加派对名单(二)
https://www.nowcoder.com/practice/cc57f3f2ea274489b1ead14a9ddcee64
s = input().split(" ") lst = [] for i in s: lst.append(i) lst.insert(0, "Allen") print(lst)
相关推荐