对<Python核心编程>的褒奖" The long-awaited second edition of Wesley Chun's Core PythonProgramming proves to be well worth the wait-its deep and broad coverageand useful exercises will help readers learn and practice good Python."-Alex Martelli, au…
作者:熊猫烧香 链接:www.pythonheidong.com/blog/article/27/ 来源:python黑洞网 对<Python核心编程>的褒奖 “ The long-awaited second edition of Wesley Chun’s Core PythonProgramming proves to be well worth the wait—its deep and broad coverageand useful exercises will help read…
如果一个复合语句(if子句,while或for循环)的代码仅仅包含一行代码,可以和前面的语句写在同一行上: elif语句(else-if) 条件表达式(三元操作符) X if C else Y 计数循环: count=0 while(count<**): count +=1 无限循环: while True range()内建函数的完整语法: range(start, end, step=1) range()会返回一个包含所有k的列表,这里start<=k<end ,从start…