Python基礎高階1

2021-07-16 03:29:17 字數 1063 閱讀 6699

1:import sys

sys.exit([arg])//退出程式

import sys

import os

import webbrowser as web #web瀏覽器

pathname =os.environ#獲取系統變數

print os.sep

print os.pathsep

print 「aaaaa」+os.linesep+」bbbb」

2:檔案input

import fileinput as fileinput

for line in fileinput.input(r』f:按行遍歷

line =line.rstrip()

num = fileinput.lineno()

print 『%d # %-60s 』 % (num ,line )

fileinput.filename()

fileinput.isfirstline()

fileinput.nextfile()#讀取下乙個檔案,本檔案不讀了

3:set集合

print set(range(10))

a = set ([1,2,3,4])

b= set ([4,5,6,3])

print a.union(b)#合併

print a|b#合併

print a&b#交集

print a.issubset(b)#a是b的子集麼?

set2=a.add(frozenset(b))

print set2

4:time

import time

print time.asctime()

print time.strftime(『%y年-%m月-%d日』)

time.sleep(1)

5:ipython

alias nss netstat -ans

alias nss netstat -ans %l :其中l是引數,

nss | grep 80 //這就是引數

python小白高階之路(1)基礎語法

1.1條件結構 用來判斷是否滿足條件,滿足條件返回值為true 1,不滿足條件返回值為false 0 多重判斷 可以巢狀使用 但是要注意在python中不像c語言中用括號來表示執行括號裡面的語句 所以要注意縮排 不然容易報錯 縮排用tap 結構 if 條件 elif 條件 else 1.2迴圈結構 ...

Python基礎高階(二)

1 類與物件 物件是類的例項。換句話說,類主要定義物件的結構,然後我們以類為模板建立物件。類不但包含方法定義,而且還包含所有例項共享的資料。我們可以使用關鍵字class定義 python 類,關鍵字後面緊跟類的名稱 分號和類的實現。class turtle python中的類名約定以大寫字母開頭 關...

python基礎 高階函式

把函式作為引數傳入,這樣的函式稱為高階函式,高階函式是函式式程式設計的體現。函式式程式設計就是指這種高度抽象的程式設計正規化。在python中,abs 函式可以完成對數字求絕對值計算。abs 10 10round 函式可以完成對數字的四捨五入計算。round 1.2 1 round 1.9 2def...