📌  相关文章
📜  解决方案 TypeError: 'list' object is not callable - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:53.541000             🧑  作者: Mango

代码示例2
Solution to 'list' object is not callable
fruit = "Apple"
fruit_list = list(fruit)
print(fruit_list)

car="Ford"
car_list=list(car)
print(car_list)