最近要做畢業設計比較忙,學習程序緩慢啊!!!
不過自己要加油!!!
print(f.tell()) #游標位置
print(f.readline()) #讀一行
print(f.tell()) #游標位置 字串作用
print(f.encoding) #編碼格式
print(f.seek(1)) #返回游標0的位置
print(f.readline())
'''import sys,time
for i in range(100):
sys.stdout.write('_')
sys.stdout.flush()
time.sleep(0.1) #進度條
'''#f.truncate(5) #擷取檔案內容
#f=open('yesterday1.txt','r+',encoding='utf-8') #讀寫模式
#f=open('yesterday1.txt','w+',encoding='utf-8') #寫讀模式
#f=open('yesterday1.txt','a+',encoding='utf-8') #追加讀寫模式
#f=open('yesterday1.txt','wb') #二進位制模式
#f.write('hello'.encode()) #需要把字串轉換成二進位制
python day10 檔案處理
1.檔案 是作業系統提供的概念 2.open r 檔案路徑 開啟方式 用什麼字元編碼 r 表示原始字串 eg open r c users 13264 desktop aaaa.py r encoding utf 8 3.檔案開啟 f open r aaaa.py 這個過程等於幹了兩件事 第一是作業...
python day 10 魔法方法
title python day 10 魔法方法 date 2019 11 05 20 08 56 categories import time as t class mytimer def init self self.prompt 未開始計時 self.unit 年 月 日 時 分 秒 self...
學習Python Day10 函式高階
1.什麼是返回值 返回值就是從函式內容傳遞到函式外部的資料 預設情況下函式內部產生的新資料,在函式外部不能使用 2.怎麼確定函式返回值 a.python中每個函式都有返回值,返回值是什麼就看執行函式體的時候遇到return關鍵字後面的資料就是什麼 如果沒有遇到return,返回值就是none。希望作...