Python learning
初始Python
Python好处
安装Python
数据结构 列表 - 数组
movies = ["The Holy Grail","The Life of brain"]print(movies[0])len(movies)
movies.appen("The Meaning of Life")
movies.pop()
movies.extend(["Another 1","Another 2"])
movies.remove("Another 1")
movies.insert(0,"Another 3")迭代 - 循环
条件表达式
注意项
字符串
命名规则
BIF
Last updated