Python3

  • Python3 基础

    Hello, World 1#!/usr/bin/python3 2 3print("Hello, World!") 编码 默认情况下,Python3 源码文件以 UTF-8 编码,

  • Python3 数据类型

    字符串 获取长度 1>>> s = 'spam' 2>>> len(s) 34 正向索引 1>>> s 2'spam' 3>>> s[0] 4's' 5>>> s[1] 6'p' 反向索

  • Python3 迭代器和生成器

    迭代器 什么是迭代器? 迭代器(Iterator) 是 Python 中访问集合

  • Python3 命名空间和作用域

    命名空间 什么是命名空间? A namespace is a mapping from names to objects. Most namespaces are currently implemented as Python dictionaries. 命