摘要: 参考 1. https://blog.csdn.net/napolunyishi/article/details/20473799 2. https://www.stevefenton.co.uk/2012/11/compiling vs transpiling/ 概念 1. Compiling这个 阅读全文
posted @ 2018-05-22 22:57 Rocin 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 1. 命名空间和作用域参考 1. https://blog.csdn.net/sakurainluojia/article/details/72783752 2. https://docs.python.org/3.6/tutorial/classes.html 概念 A scope is a te 阅读全文
posted @ 2018-05-22 16:53 Rocin 阅读(210) 评论(0) 推荐(0) 编辑
摘要: tree help 阅读全文
posted @ 2018-05-22 10:53 Rocin 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1. 参数排放顺序:位置参数 args 默认参数 kwargs 2. 动态传参 参数不定个数用 args, kwargs接收: args是元祖形式,接收除去键值对以外的所有参数。 kwargs接收的只是键值对的参数,并保存在字典中。 阅读全文
posted @ 2018-05-22 08:10 Rocin 阅读(213) 评论(0) 推荐(0) 编辑