Python的列表就像是一个数组: 一.创建列表 movies=["The Holy Grail","Then Life of Brian","The Meaning of Life"] 这里的movies是一个变量,而且不需要声明变量的类型. 数组是从0开始计数的.如果要访问列表里的数据,可以这样: ['The Holy Grail', 'Then Life of Brian', 'The Meaning of Life'] >>&…
数字 1,加减乘除:+,-,*,/ 2,平方:** 3,立方:**3 4,字符串转换:str(数字) 5,浮点数:带小数点 0.2 Python编程建议 import this >>> import this The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is…