Python 自学开工贴

基本的配置安装过程省略

 

先上传一份整理的python脑图,文件上传下载管理;

Python 自学开工贴_第1张图片

 

python脚本范式:

# /usr/bin/env python

*this is a test module*

import sys

import os

debug = Ture

class FooClass (object):

    "Foo class"

    pass

 def test ():

    "test function"

    foo = FooClass()

    if debug :

        print 'run test()'

 

if __name__ = '__main__'

    test()

你可能感兴趣的:(Python,python)