Python:TypeError: ‘int‘ object is not callable初学易犯错误

今天跟着教程布置的任务写了一段这样的代码:

products=[["iphone",6888],["MacPro",14800],["小米6",2499],["Coffee",31],["book",60],["Nike",699]]
i=0
print("--------商品列表-----------")
for pro in products:
    print(i," ",pro[0]," ",pro[1])
    i+=1
shopping=[]
input=int(input("请输入商品编号:"))
shopping.append(products[input])

con=input("是否要继续购买:y/n: ")
while con=="y":
    input = int(input("请输入商品编号:"))
    shopping.append(products[input])
    con = input("是否要继续购买:y/n: ")
print(shopping)

大体就是输出用户指定购买的商品。
然后运行结果是这样的:

--------商品列表-----------
0   iphone   6888
1   MacPro   14800
2   小米6   2499
3   Coffee   31
4   book   60
5   Nike   699
请输入商品编号:0
Traceback (most recent call last):
  File "D:/0StudyMaterial/openCV/project/study/test.py", line 11, in <module>
    con=input("是否要继续购买:y/n: ")
TypeError: 'int' object is not callable

爆出了错误TypeError: ‘int’ object is not callable,int对象不能被调用。
查找资料得知是变量名和函数名使用一样的名称导致的,编译器遇到这种情况会去调用int型对象,但这里没有具体定义,因此就会报这个错误了。
所以大家写程序一定注意变量名尽量不要和关键字,函数名等重复。

你可能感兴趣的:(python,开发语言)