Python,是龜叔在1989年為了打發無聊的聖誕節而編寫的一門程式語言,特點是優雅、明確、簡單,現今擁有豐富的標準庫和第三方函式庫。
Python適合開發Web網站和各種網路服務,系統工具和腳本,作為「膠水」語言把其他語言開發的模組包裝起來使用,科學計算等等。
小編學習Python的理由有三:
為了爬取所需的各種數據,不妨學習Python。
為了分析數據和挖掘數據,不妨學習Python。
為了做一些好玩有趣的事,不妨學習Python。
1、在Python官網下載安裝喜歡的版本,小編使用的,是目前最新版本3.6.0。
2、開啟IDLE,這是Python的整合開發環境,儘管簡單,但極為有用。 IDLE包括一個能夠利用顏色突出顯示語法的編輯器、一個調試工具、Python Shell,以及一個完整的Python3在線文檔集。
1、在IDLE中,輸入print('hello world')
,回車,則列印出hello world。
PS:語句最後加上不加分號;
都可以,小編決定不加分號,比較簡單。
2、使用sublime新檔案hello.py,內容如下:
print('hello world')
在Windows下,shift+右鍵,在此處開啟指令窗口,執行python hello.py
,回車,則列印出hello world。
3、使用sublime新建檔案hello.py,內容如下:
#!/usr/bin/env python print('hello world')
在Linux或Mac環境下,可以直接執行腳本。首先新增執行權限chmod a+x hello.py
,然後執行./hello.py
。當然,也可以跟Windows一樣,使用python hello.py
來執行腳本。
1、新建name.py,內容如下:
name='voidking'
2、執行python name.py
。
3、進入python shell模式,執行import name
,print(name.name)
,則印出voidking。
常用函數(print)、資料型態、表達式、變數、條件與迴圈、函數。和其他語言類似,下面選擇一部分展開。
1、定義數組myList = ['Hello', 100, True]
2、輸出數組print(myList)
2、輸出數組print(myList)
2、輸出數組
print(myList)3、輸出數組元素
])
,
print(myList[-1])4、追加元素到末尾
myList.append('vomying')5、追加元素到頭部
myList.insert(0idking. ')
6、刪除元素myList.pop()
7、元素賦值myList[0]='hello666'
myList[0]='hello666'
定義陣列
myTuple = ('Hello', 100, True)錯誤定義:
myTuple1=(1)
,正確定義:
myTuple=(1,)2、輸出陣列
3、輸出陣列元素print(myTuple[0])
4、tuple和list結合
score = 75 if score>=60: print 'passed'
if score>=60: print('passed') else: print('failed')
if score>=90: print('excellent') elif score>=80: print('good') elif score>=60: print('passed') else: print('failed')
L = [75, 92, 59, 68] sum = 0.0 for score in L: sum += score print(sum / 4)
sum = 0 x = 1 while x<100: sum += x x = x + 1 print(sum)
sum = 0 x = 1 while True: sum = sum + x x = x + 1 if x > 100: break print(sum)
L = [75, 98, 59, 81, 66, 43, 69, 85] sum = 0.0 n = 0 for x in L: if x < 60: continue sum = sum + x n = n + 1 print(sum/n)
for x in ['A', 'B', 'C']: for y in ['1', '2', '3']: print(x + y)
d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59, 'Paul': 75 } print(d) print(d['Adam']) print(d.get('Lisa')) d['voidking']=100 print(d) for key in d: print(key+':',d.get(key))
s = set(['Adam', 'Lisa', 'Bart', 'Paul']) print(s) s = set(['Adam', 'Lisa', 'Bart', 'Paul', 'Paul']) print(s) len(s) print('Adam' in s) print('adam' in s) for name in s: print(name)
s = set([('Adam', 95), ('Lisa', 85), ('Bart', 59)]) for x in s: print(x[0]+':',x[1])
s.add(100) print(s) s.remove(('Adam',95)) print(s)
del sum L = [x*x for x in range(1,101)] print sum(L)
def my_abs(x): if x >= 0: return x else: return -x my_abs(-100)
import math def quadratic_equation(a, b, c): x = b * b - 4 * a * c if x < 0: return none elif x == 0: return -b / (2 *a) else: return ((math.sqrt(x) - b ) / (2 * a)) , ((-math.sqrt(x) - b ) / (2 * a)) print(quadratic_equation(2, 3, 0)) print(quadratic_equation(1, -6, 5))
字串切片
def average(*args): if args: return sum(args)*1.0/len(args) else: return 0.0 print(average()) print(average(1, 2)) print(average(1, 2, 2, 3, 4))
集合是指包含一組元素的資料結構,包括:
L = ['Adam', 'Lisa', 'Bart', 'Paul'] L[0:3] L[:3] L[1:3] L[:] L[::2]
L = ['Adam', 'Lisa', 'Bart', 'Paul'] for index, name in enumerate(L): print(index+1, '-', name) myList = zip([100,20,30,40],L); for index, name in myList: print(index, '-', name)
d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59 } print(d.values()) for v in d.values(): print(v)
PS:Python3.x中,dict的方法dict.keys(),dict.items(),dict.values()不会再返回列表,而是返回一个易读的“views”。这样一来,k = d.keys();k.sort()
不再有用,可以使用k = sorted(d)
来代替。
同时,dict.iterkeys(),dict.iteritems(),dict.itervalues()方法不再支持。
d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59 } for key, value in d.items(): print(key, ':', value)
L = [x*(x+1) for x in range(1,100)] print(L)
d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59 } def generate_tr(name, score): if score >=60: return '<tr><td>%s</td><td>%s</td></tr>' % (name, score) else: return '<tr><td>%s</td><td style="color:red">%s</td></tr>' % (name, score) tds = [generate_tr(name,score) for name, score in d.items()] print('<table border="1">') print('<tr><th>Name</th><th>Score</th><tr>') print('\n'.join(tds)) print('</table>')
L = [x * x for x in range(1, 11) if x % 2 == 0] print(L)
def toUppers(L): return [x.upper() for x in L if isinstance(x,str)] print(toUppers(['Hello', 'world', 101]))
L = [m + n for m in 'ABC' for n in '123'] print(L)
L = [a*100+b*10+c for a in range(1,10) for b in range(0,10) for c in range(1,10) if a==c] print(L)
至此,Python基础结束。接下来,爬虫飞起!
更多Python,基础相关文章请关注PHP中文网!