环境:mac os x
1、保存函数到一个文件中
$ def print_lol(the_list):
for each_item in the_list:
if isinstance(each_item,list):
print_lol(each_item)
else:
print(each_item)
将上面这个函数保存到一个文件中,将这个文件命名为xxx.py
2、注释代码
在python中,一个最常用的注释技术是使用一个三重引号来建立多行注释。如果使用了一个三重引号,需用一个三重引号结束。
""" This is 《python 第四谈》"""
3、共享代码
可以把代码上传到PyPI与全世界共享。
1) 首先为模块创建一个文件夹。
2) 在新文件夹中创建一个.py文件。
3) 构建一个发布文件,发布工具包含有构建一个发布所需的所有功能,在新文件夹中打开终端窗口:
$ python xxx.py sdist
error:
NameError: name 'print_lol' is not defined
2018-04-24