NULL
博文链接:https://shixm.iteye.com/blog/381884abstract
Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple
but effective approach to ohject-oriented programming. Python's elegant syntax a
本文是一篇关于《Effective Python》书中一节的学习笔记,记录了示例代码和思路。
如果函数要产生一系列结果,那么最简单的做法就是把这些结果都放在一个列表里返回。
比如我们要查出字符串中每个词的首字母在整串字符串中的位置:
def index_word(text):
result=[]
if text:
result.append(0)
for index,letter in enumerate(text):
if letter == ' ':