摘要: What is pass in Python? Pass means, no-operation Python statement, or in other words it is a place holder in compound statement, where there shold be 阅读全文
posted @ 2017-08-25 14:24 Zoe233 阅读(172) 评论(0) 推荐(0)
摘要: Why lambda forms in python does not have statements? A lambda form in python does not have statements as it is used to make new function object and th 阅读全文
posted @ 2017-08-25 14:23 Zoe233 阅读(152) 评论(0) 推荐(0)
摘要: 在Python中lambda函数是什么? It is a single expression anoymous function often used as inline function. lambda 匿名函数 表达式及定义 lambda [ arg1 [arg2, arg3, … argN] 阅读全文
posted @ 2017-08-25 13:38 Zoe233 阅读(370) 评论(0) 推荐(0)
摘要: Python中的命名空间是什么? In Python,every name introduced has a place where it lives and can be hooked for. This is known as namespace. It is like a box where 阅读全文
posted @ 2017-08-25 11:09 Zoe233 阅读(356) 评论(0) 推荐(0)
摘要: There are mutable and Immutable types of Pythons built in types Mutable built-in types: List Set Dictionary Immutable built-in types: String Tuple Num 阅读全文
posted @ 2017-08-25 10:25 Zoe233 阅读(345) 评论(0) 推荐(0)