摘要: oct()open()20181015.md python def oct( args, kwargs): real signature unknown; NOTE: unreliably restored from __doc__ """ Return the octal representati 阅读全文
posted @ 2018-10-15 10:09 Charles_Wu 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Lear English in builtins :locals()max()min()next()20181011 阅读全文
posted @ 2018-10-11 15:08 Charles_Wu 阅读(104) 评论(0) 推荐(0) 编辑
摘要: ```python def isinstance(x , A_tuple): real signature unknown;【经常看到,依然不知道什么含义】restored from __doc__ ''' Return whether an object is an instance of a c 阅读全文
posted @ 2018-10-10 10:43 Charles_Wu 阅读(136) 评论(0) 推荐(0) 编辑
摘要: ```python def help(): real signature unknown; restored from __doc__ ''' Define the builtin 'help'. This is a wrapper【包装纸】 around pydoc【python document 阅读全文
posted @ 2018-10-09 10:32 Charles_Wu 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 经过前几天的测试,发现以下几个问题: 1 效率低下,一天cost 两小时左右,大部分时间在I|O,真正记忆时间很少 2 这样学英语,单词不方便复习,经过查立资料发现一个比较好的学习python英语词汇的方法——‘扇贝单词’,搜索python。 3 这样学python,基本上还是靠自己测试及网上查询文 阅读全文
posted @ 2018-10-08 14:53 Charles_Wu 阅读(206) 评论(0) 推荐(0) 编辑
摘要: exec()与eval()与compile()具体区别参考博客:https://www.cnblogs.com/yangmingxianshen/p/7810496.html dir()具体:https://blog.csdn.net/kyjl888/article/details/78940805 阅读全文
posted @ 2018-10-06 13:08 Charles_Wu 阅读(305) 评论(0) 推荐(0) 编辑
摘要: chr()compile(),copyright()credits()delattr()2018 10 5.md python for i in range(65,90): ... chr(i) ... 'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 阅读全文
posted @ 2018-10-05 13:58 Charles_Wu 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 目录(无链接) 1 representation , vote , containing 2 escape 3 unreliable 4 binary 5 breakpoint 6 default 7 drops 8 debugger 9instances 1 representation [ 英 阅读全文
posted @ 2018-10-04 10:09 Charles_Wu 阅读(212) 评论(0) 推荐(0) 编辑
摘要: ```python encoding: utf 8 module builtins from (built in) by generator 1.145 """ Built in functions, exceptions, and other objects. Noteworthy: None i 阅读全文
posted @ 2018-10-03 18:11 Charles_Wu 阅读(379) 评论(0) 推荐(0) 编辑