當前位置:成語大全網 - 書法字典 - python讀取excel後如何寫文本?

python讀取excel後如何寫文本?

& gt& gt& gtmyfile = open("testit.txt ")

& gt& gt& gtmyfile.read()

妳好世界!\n總價值= $1820.00\n '

& gt& gt& gtstr = myfile.read()

& gt& gt& gt打印字符串

& gt& gt& gtmyfile.seek(0)

& gt& gt& gtstr = myfile.read()

& gt& gt& gt打印字符串

妳好世界!

總價值= 65438美元+0820.00美元

& gt& gt& gtstr.split()

['妳好','世界!',' The ',' total ',' value ',' = ',' $1820.00']

& gt& gt& gtstr.split('\n ')

['妳好,世界!','總價值= $1820.00 ',' ']

& gt& gt& gt對於str.split中的行(' \n '):

...打印行

...

妳好世界!

總價值= 65438美元+0820.00美元

& gt& gt& gtmyfile.close()