题解 | #增加派对名单(一)#
增加派对名单(一)
https://www.nowcoder.com/practice/d3d9737be17d44a7919e3a03e8087270
a=input()
b=a.split(' ')
c=list(b)
c.append('Allen')
print(c)
刚刚出错了,写成了d=c.append('Allen')
这里就相当于那种就不是赋值反正是
增加派对名单(一)
https://www.nowcoder.com/practice/d3d9737be17d44a7919e3a03e8087270
a=input()
b=a.split(' ')
c=list(b)
c.append('Allen')
print(c)
刚刚出错了,写成了d=c.append('Allen')
这里就相当于那种就不是赋值反正是
相关推荐