标签:style blog color 使用 for sp 文件 div on
1. import 仅在第一次有效。
在交互提示符中通过import一个文件来运行它,但仅会在一次会话中起一次作用,接下来的import仅仅是返回这个已加载的模块。若要强制python重新加载一个文件的代 码,需要调用函数reload(module)来达到这个目的。
2. 使用简单的for循环而不是while或者range
S = "hello world" for c in S: print c #简洁 for i in range(len(S)): print S[i] #复杂 i = 0 while i < len(S): print S[i]; i+=1 #复杂
标签:style blog color 使用 for sp 文件 div on
原文地址:http://www.cnblogs.com/darlwen/p/4041904.html