python 基礎
#python分為python2和python3具體區別沒多大可以網上看下
#python定義很簡單
#下邊是定義例子
s1 = "wangwu"
i1 = 123
f1 = 12.3
#基本操作函數
len( s1) #長度
dir( str) #查詢模塊內方法
help( str) #幫助文檔
s1 = input( '輸入內容:') #輸入方法
print s1 #打印
import urllib 引入模塊
python 中的模塊就是python的文件名xxx.py
#字符輸出格式
s1 = u'wangwu'
print 'hello %d' % 123
#list序列
ls1 = [ 1, 2, 3, 4, 5, 6]
ls1[ 2] #分片查詢
ls1. append( 233) #尾部添加
ls1. insert( 2, 123) #在2位置添加123
ls1. pop() #刪除尾部一個
ls1. pop( 3) #三餐3位置上的內容
元組
t1 =( 1, 2, 3) #元組不可改變
字典
d ={ 's': 22, 'b': 'cc'}
d[ 'b']
#列表生成
g =( i for i in range( 1, 10))
for s in [ i for i in range( 1, 10)]: print s #輸出序列
#定義類
class index:
#定義方法
def GET( self, name):
print 'index get value ' + name
web. header( 'Content-Type', 'text/html;charset=UTF-8')
return 'hello' + name + u'歡迎你喲!'
#運行
if __name__ == "__main__":
print ’hello '