05 2016 档案
摘要:博客参考老师文章:http://www.cnblogs.com/wupeiqi/ 博客参考老师文章:http://www.cnblogs.com/luotianshuai/p/4949497.html 上节回顾: str:字符串strs = "rain,sunny,ray,wind"list:列表l
阅读全文
摘要:推荐书籍 1、变量 1.1.变量的作用 重复调用 存储数据的容器[内存存储] 1.2.变量定义的规则 1、变量名只能包含字符串、数字、_; 2、变量名不能以数字开头; 3、不要使用一些关键字做为变量名;(如:while,for,continue,break,if,else.........); 1.
阅读全文
摘要:一、python3.x与python2.x部分差别 print "this is python2.x version" print("this is python3.x version") name = raw_input("this is python2.x version") name = in
阅读全文