
python
jiangxng
明确目标、坚持不懈、努力工作、珍惜现在,任何时间都不晚
展开
-
python 学习笔记1
PrefaceThis simple book is meant to get you started in programming. The title says it’s the hard way to learn to write code, but it’s actually not. It’s only the “hard” way because it uses a techniq翻译 2015-11-11 23:54:33 · 728 阅读 · 0 评论 -
python 学习笔记2
The SetupThis exercise has no code. It is simply the exercise you complete to get your computer to run Python. You should follow these instructions as exactly as possible. For example, Mac OSX compu翻译 2015-11-12 00:17:44 · 1551 阅读 · 0 评论 -
python import UMD has deleted
Tools > Preferences > Console > Advanced settings > Show reloaded modules list 去掉这个选项原创 2015-11-14 20:15:00 · 1647 阅读 · 0 评论 -
python 学习笔记4
Modules, Classes, and ObjectsA First-Class Exampleclass Song(object): def __init__(self, lyrics): self.lyrics = lyrics def sing_me_a_song(self): for line in self.lyri原创 2015-11-15 19:29:49 · 414 阅读 · 0 评论 -
python 学习笔记3
print "Hello World!"print "I could have code like this." # and the comment after is ignoredNumbers and Mathprint "Roosters", 100 - 25 * 3 % 4+ plus- minus/ slash* asterisk% percent< less- than原创 2015-11-14 21:05:05 · 760 阅读 · 0 评论