python自帶函數(shù)——文件讀取
提問人:楊紫紅發(fā)布時(shí)間:2020-11-18
>>> test_file = open('c:\\test.txt')
>>> text = test_file.read()
>>> print(text)
文件內(nèi)容xxxxxxxxx
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
>>> test_file = open('c:\\test.txt')
>>> text = test_file.read()
>>> print(text)
文件內(nèi)容xxxxxxxxx
點(diǎn)擊加載更多評(píng)論>>