匯入函式模組
1.庫檔案存在於lib下面,使用import lib
2.不存在,則需要一層層去匯入,使用from packagename.modulename import functionname
if __name__='__main__' #執行程式主入口,
function()
python**裡面的異常處理
try...except...
try#放覺得有問題的**
except#捕捉錯誤並進行處理
1.出錯後繼續執行後面的**
try:
print(a)
except:
pass
print('hello,python')
2.出錯時列印指定資訊
try:
print(a)
except:
print('出錯了')
3.出錯時捕獲所有異常
try:
print(a)
except exception as e:#捕捉所有異常資訊
print('出錯了:%s'%e)
4.出錯時捕獲指定異常
try:
print(a)
except indexerror as e:#捕捉所有異常資訊
print('出錯了:%s'%e)
print('hello,python')
如果沒有捕捉到指定異常,則不執行後面**
5.try...except...finally...#無論能否捕獲到異常,都要執行finally中的**,般用在檔案或者是資料庫資源的處理
try:
print(a)
except indexerror as e:#捕捉所有異常資訊
print('出錯了:%s'%e)
finally:
print('hello,python')
6.try...except...else...#如果沒有捕獲到異常,則執行else下面的**
try:
print(a)
except indexerror as e:#捕捉所有異常資訊
print('出錯了:%s'%e)
else:
print('hello,python')
ps:查詢python常見異常錯誤
python檔案和異常處理
with open filepath,way as f f.write 資料 write 用於寫入 read 用於讀取 readlines 用於讀取檔案,以列表形式儲存 readline 逐行讀取資料 filepath是檔案的路徑 相對和絕對 way是開啟方式 預設方式為 r即讀取,還有 w 寫入,...
Python檔案與異常處理
使用python的bif build in function open 進行檔案讀寫操作 1.開啟檔案 data open file name,w 讀取模式有很多種,主要有 w 寫入 r 唯讀 a 在尾部新增,w 可讀可寫,不存在新建,r 可讀可寫,不存在報錯 a 可讀可寫,不存在建立 2.操作檔案...
python檔案讀寫 異常處理
函式open 檔案讀寫,預設讀模式 open 路徑檔名.字尾名 eg file open d tes.txt content file.read print content file.close 讀 read 從文件開始位置讀取 readline 讀取一行內容,檔案指標在 就從 開始讀取一行 rea...