
Python
文章平均质量分 87
sysu-yunz
这个作者很懒,什么都没留下…
展开
-
Python Basic
lesson 1 Nice 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 · 1073 阅读 · 0 评论 -
Python One Step Further
Break It Down When 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 · 1109 阅读 · 0 评论 -
Python Advanced Topics
some functions about dictionary dictionary.items() dictionary.keys() dictionary.values() dictionary = {“hello”:0, “world”:1} dictionary.items() [(‘world’, 1), (‘hello’, 0)] dictionary.keys() [‘原创 2013-12-18 17:36:20 · 859 阅读 · 0 评论