摘要:
1 #!/user/bin/env python 2 # -*- coding:utf-8 -*- 3 """ 4 Function ; 5 Is Mutable 6 mutable : 7 list set dict 8 immutable : If you modify the value of... 阅读全文
摘要:
1 #!/user/bin/env python 2 # -*- coding:utf-8 -*- 3 4 """ 5 Container: 6 List: 7 Establish 8 Content Access 9 Built-In Function 10 Add 11 ... 阅读全文
摘要:
1 #!/user/bin/env python 2 # -*- coding:utf-8 -*- 3 4 # Single-Line Comments 5 6 """ 7 multiline Comments 8 """ 9 10 """ 11 1. Variable 12 Weak Type : No clear type, the s... 阅读全文
摘要:
1 #!/user/bin/env python 2 # -*- coding:utf-8 -*- 3 """ 4 string (scene): 5 section : [start:end[:step]] 6 containing "start" and does not contain "end" 7 string = "1234567... 阅读全文