Python - Dictionary

class dict(object):

Python - List

list

Python - String

str

Python - Set

set

MySQL 字符集与校对规则

字符集 CHARACTE SET

Ubuntu deploy OpenVPN

参照 OpenVPN文档

Python - Class

类定义

    Django tutorial 1

    Install Django

    1
    pip install Django

    Python - Scope and namespace

    Namespace

    A namespace ia a mapping from names to objects. Most namespaces are currently implemented as Python dictionaries.
    命名空间是从名称到对象的映射。当前,命名空间主要通过 Python 字典来实现。
    Examples of namespaces are:

    Python - slice

    List Slice: list[start:end:step]