📜  如何访问 python 列表 - Python 代码示例

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

代码示例1
list = ["a", "b"]
print(list[0])
print(list[1])