提示:由于水平有限,如发现有疑问或错误的地方请毫不客气的提出、讨论,我会在第一时间回复,感谢在先
重要的事情说三遍
查看module文档的时候方法执行一定添加()
查看module文档的时候方法执行一定添加()
eg: help(str)
获取帮助方法
查看help()
另一种方法: module_name.__doc__
查看python3中内置方法
dir(__builtins__)
0.问题描述: 在树莓派支持的centos上面 pip install pylint 最后提示安装成功;python shell 中 import pylint 没有报错. 但bash提示:command not found.
1.找到pylint的位置(/usr/local/python3/bin/pylint)直接运行成功
2.效仿安装python3方法,在/usr/bin/中创建软连接.
1.is 与 == 区别
https://stackoverflow.com/que...
判断两个变量指针是否相同使用is,判断两个变量的值是否相同使用==
is will return True if two variables point to the same object, == if the >objects referred to by the variables are equal.
[ ] is [ ] :false
[ ] == [ ] : ture
2.列表拷贝
https://stackoverflow.com/que...
1.使用分片(shallow copy)
new_list = my_list[:]
2.使用list
new_list = list(my_list)
3.使用copy浅复制(import copy)
new_list = copy.copy(my_list)
4.使用copy.deepcopy()深拷贝
new_list = copy.deepcopy(my_list)
3.函数参数
http://blog.csdn.net/kc_11979...
>>> def test(var, buf=[]):
buf.append(var)
return buf
>>> test('a')
['a']
>>> test('b')
['a', 'b']
可以认为python的函数也是一个对象,这个对象有一个可执行的方法和部分属性,里面参数是共享的.
解决方法:
>>> def test(var, buf=None):
if buf == None:
buf = []
buf.append(var)