📌  相关文章
📜  TypeError:'list' 对象不可调用 - Python 代码示例

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

代码示例3
Indexing list using parenthesis()
my_list = [1, 2, 3, 4, 5, 6]
first_element= my_list(0)
print(" The first element in the list is", first_element)