官方文件中文站:
文件編寫:
w3c分為了基礎教程和高階教程。通過基礎教程的學習後,再到慕課網進行實際的操作。
豐富的例子程式:
類的反射使用,假設我有個模組models.py在org目錄下面:
class product():
def __init__(self,title,upc):
self.title = title;
self.upc = upc;
def display(self):
print "product title:%s upc:%s " % (self.title,self.upc)
我們在另乙個模組下面反射獲取他的資訊,寫法如下:
import sys
__import__("org.models")
pm = sys.modules['org.models']
print dir(pm)
pclass= getattr(pm,"product")
print pclass
print type(pclass)
pobj = pclass('title','001')
print pobj
pobj.display()
輸出結果:
['product', '__builtins__', '__doc__', '__file__', '__name__', '__package__']
org.models.product
product title:title upc:001
這樣就可以動態使用乙個類。 python基礎學習
基本資料型別 學習基於python2.7,ubuntu16.04,python3中有一些不同的特性 在ubuntu終端輸入python,進入互動介面。print hello,world print 是乙個常用函式,輸出字串。在python2中,print還是乙個關鍵字,可以用print hello,...
Python 基礎學習
一 python中的資料結構 容器 list 列表 a 1,2,3,4 用方括號標記 可被修改 a 0 1 tuple 元組 a 4,5,6 用圓括號標記 不可被修改 b 0 4 dictionary 字典 即對映 d set 集合 不重複,無序,不支援索引 s 會自動去重得到 二 函式式程式設計 ...
python基礎學習
從今天起,每天晚上9點更新部落格,成為乙個愛學習的程式工程師。特立此flag,監督自己的學習。python基礎學習分為以下幾章 基礎知識 列表和元組 使用字串 字典條件 迴圈和其他語句 抽象更加抽象 異常魔法方法 屬性和迭代器 自帶電池 模組 檔案和流 圖形使用者介面 資料庫支援 網路程式設計 py...