摘要: Python中装饰器是什么? A Python decorator is a specific change that we make in Python syntax to alter functions easily. Python decorator是我们在Python语法中使用的一个特定的更 阅读全文
posted @ 2017-08-23 15:17 Zoe233 阅读(248) 评论(0) 推荐(0)
摘要: 哪些工具可以帮助查找bug或进行静态分析? PyChecker is a static analysis tool that detects the bugs in Python source code and warns about the style and complexity of the 阅读全文
posted @ 2017-08-23 15:09 Zoe233 阅读(267) 评论(0) 推荐(0)
摘要: Python中内存是如何管理的? Python memory is managed by Python private heap space. All Python objects and data structures are located in a private heap. The prog 阅读全文
posted @ 2017-08-23 14:56 Zoe233 阅读(710) 评论(0) 推荐(0)
摘要: Python是怎么解释的? Python language is an interpreted language. Python program runs directly from the source code. It converts the source code that is writt 阅读全文
posted @ 2017-08-23 13:33 Zoe233 阅读(734) 评论(0) 推荐(0)