为什么我得到“ AttributeError:'列表'对象在我的代码中没有属性'print'?

时间:2019-11-03 15:05:24

标签: python

**N = int(input())
finallist=[]
for n in range(N):
    enter=input()
    mylist=[]
    mylist=enter.split()
    command=mylist[0]
    if command=="append":
        finallist.append(int(mylist[1]))
    if command=="insert":
        finallist.insert(int(mylist[1]),int(mylist[2]))
    if command=="print":
        finallist.print()
    if command=="remove":
        finallist.remove(int(mylist[1]))
    if command=="sort":
        finallist.sort()
    if command=="reverse":
        finallist.reverse()
    if command=="pop":
        finallist.pop()**

我正在用python 3进行编码,想获取动态命令,但我不明白为什么会显示错误

0 个答案:

没有答案