
Python
文章平均质量分 87
sysu-yunz
这个作者很懒,什么都没留下…
展开
-
Python Basic
lesson 1Nice work! So far you've learned about the following in Python:• Variables, which are ways to store values for later use;• Data types (such as integers, floats, and booleans);• Whi原创 2013-11-28 14:50:34 · 1076 阅读 · 0 评论 -
Python One Step Further
Break It DownWhen you start a big project , it's important to take some time to break the problem into individual steps. Then you can tackle (and test) one step at a time rather than trying to w原创 2013-12-06 21:04:52 · 1111 阅读 · 0 评论 -
Python Advanced Topics
some functions about dictionarydictionary.items()dictionary.keys()dictionary.values()dictionary = {“hello”:0, “world”:1} dictionary.items() [(‘world’, 1), (‘hello’, 0)] dictionary.keys() [‘原创 2013-12-18 17:36:20 · 860 阅读 · 0 评论