#coding=utf-8
'''filename = '052dec5bfd25556685291fcdccf6f9d6.m4a'
with open(filename,'rb') as fileobj:
print(fileobj.read(10))
# tell() 方法用來檢視當前讀取的位置
print('當前讀到第 -->',fileobj.tell())
# seek() 方法用來修改當前讀取的位置,第乙個引數是要切換到的位置;第二個引數是計算位置方式,可選值有0,從頭計算,預設值;1從當前位置計算;2從最後位置計算
fileobj.seek(12,0)
print('當前讀到第 -->',fileobj.tell())
fileobj.seek(12,1)
print('當前讀到第 -->',fileobj.tell())
fileobj.seek(1,2)
print('當前讀到第 -->',fileobj.tell())
'''filename = 'demo1.txt'
with open(filename,"r",encoding='utf-8') as fileobj:
print(fileobj.read(3))
print('當前讀到第 -->',fileobj.tell())
fileobj.seek(3)
print(fileobj.read(3))
print('當前讀到第 -->',fileobj.tell())
Python 獲取當前檔案所在目錄
python下獲取檔案所在的絕對目錄,大都通過 os.path.abspath,但如果你在其他目錄下,通過絕對路徑獲取,這時就會有錯。例如 步驟 在當用目錄執行 import os import sys print os.path.abspath main.py 結果為 home abc tiran...
獲取當前vue物件 Vue檔案如何獲取當前例項?
1.首先你已經用了vue,那麼你就應該上es6的寫法,2.你的data寫的有問題,data裡面放上了方法怎麼能拿到this,你可以考慮換乙個外掛程式 3.如果你真要這麼做的話 如下實現 export default name calendar data let this this return mo...
python 獲取當前時間
取得時間相關的資訊的話,要用到python time模組,python time模組裡面有很多非常好用的功能,你可以去官方 文件了解下,要取的當前時間的話,要取得當前時間的時間戳,時間戳好像是1970年到現在時間相隔的時間。你可以試下下面的方式來取得當前時間的時間戳 import time prin...