導航:首頁 > 編程語言 > python寫入文件

python寫入文件

發布時間:2022-01-29 04:16:25

『壹』 [python]如何將變數寫入文件

呃……f=file("1.txt")這個好像不對……如果參數要求是字元串類型,那麼可以把變數轉換成字元串。比如說x
=
1x
=
str(x)

『貳』 python文件寫操作

這樣把
教你個簡單的辦法
python一般不會在原文件中操作的,一般會讀出來,操作,然後再寫入的。代碼如下:
#encoding:gbk
insert='123'
#你想插入的字元串
line=''
#最終文件內容
f=open("1.txt","r")
i=f.readline()
#讀取文件內容
f.close()
pre=i[0:3]
last=i[3:]
line=pre+insert+last
f=open("1.txt","w")
f.write(line)
f.close()

『叄』 python 寫入文件 只能寫入一行

ft=open("a",'w')
try:
ft.write(' '.join(result))
except:
log.error('writebackuperror:'+JOBNAME)
finally:
ft.close()
os.chdir(basePath)

『肆』 關於python里寫文件的操作

  1. fo.close()---你小括弧沒有。

  2. fo = open("D:/text一.txt","w",encoding = 'utf-8')
    ls = ['13','14','15']
    fo.writelines(ls)
    fo.close()

  3. 文件在d盤下面

『伍』 python怎麼以追加的方式寫文件

一、用Python創建一個新文件,內容是從0到9的整數, 每個數字佔一行:

#python

>>>f=open('f.txt','w') # r只讀,w可寫,a追加

>>>for i in range(0,10):f.write(str(i)+' ')

. . .

>>> f.close()

二、文件內容追加,從0到9的10個隨機整數:

#python

>>>import random

>>>f=open('f.txt','a')

>>>for i in range(0,10):f.write(str(random.randint(0,9)))

. . .

>>>f.write(' ')

>>>f.close()

三、文件內容追加,從0到9的隨機整數, 10個數字一行,共10行:

#python

>>> import random

>>> f=open('f.txt','a')

>>> for i in range(0,10):

. . . for i in range(0,10):f.write(str(random.randint(0,9)))

. . . f.write(' ')

. . .

>>> f.close()

四、把標准輸出定向到文件:

#python

>>> import sys

>>> sys.stdout = open("stdout.txt", "w")

『陸』 python怎樣將運行結果寫入到文件里

你是說把控制台的所有輸出保存到文件?

用重定向

pythoncode.py>output.txt

『柒』 怎樣用python寫文件

這個應該打開之後有會有讓你讓你寫字的,然後你就可以把你想寫的寫上。

『捌』 python中如何將列表寫入文件

不知道這是不是你想要的效果(把list作為一個str寫入文件)
>>> list = ['i','am','a','boy']
>>> file = open('test.txt','w+')
>>> file.write(repr(list))
>>> file.close()

>>> print open('test.txt').read()
['i', 'am', 'a', 'boy']

『玖』 python向文件內寫入數據

f=open("a.txt","w")
foriinrange(1,10):
f.write("<user> <id>"+str(i)+"</id> </user> ")
f.close()

因為i是int型,所以要先轉為str型,再進行字元串拼接,然後寫入文件

『拾』 Python如何讀寫文本文件

1.open使用open打開文件後一定要記得調用文件對象的close()方法。比如可以用try/finally語句來確保最後能關閉文件。
file_object = open('thefile.txt')
try:
all_the_text = file_object.read( )
finally:
file_object.close( )
註:不能把open語句放在try塊里,因為當打開文件出現異常時,文件對象file_object無法執行close()方法。
2.讀文件讀文本文件input = open('data', 'r')
#第二個參數默認為r
input = open('data')

讀二進制文件input = open('data', 'rb')
讀取所有內容file_object = open('thefile.txt')
try:
all_the_text = file_object.read( )
finally:
file_object.close( )
讀固定位元組file_object = open('abinfile', 'rb')
try:
while True:
chunk = file_object.read(100)
if not chunk:
break
do_something_with(chunk)
finally:
file_object.close( )
讀每行list_of_all_the_lines = file_object.readlines( )
如果文件是文本文件,還可以直接遍歷文件對象獲取每行:
for line in file_object:
process line
3.寫文件寫文本文件output = open('data.txt', 'w')
寫二進制文件output = open('data.txt', 'wb')
追加寫文件output = open('data.txt', 'a')

output .write("\n都有是好人")

output .close( )

寫數據file_object = open('thefile.txt', 'w')
file_object.write(all_the_text)
file_object.close( )

閱讀全文

與python寫入文件相關的資料

熱點內容
毛選pdf 瀏覽:657
linuxexecl函數 瀏覽:725
程序員異地戀結果 瀏覽:372
剖切的命令 瀏覽:226
干什麼可以賺錢開我的世界伺服器 瀏覽:288
php備案號 瀏覽:988
php視頻水印 瀏覽:166
怎麼追程序員的女生 瀏覽:486
空調外壓縮機電容 瀏覽:78
怎麼將安卓變成win 瀏覽:459
手機文件管理在哪兒新建文件夾 瀏覽:724
加密ts視頻怎麼合並 瀏覽:775
php如何寫app介面 瀏覽:804
宇宙的琴弦pdf 瀏覽:396
js項目提成計算器程序員 瀏覽:944
pdf光子 瀏覽:834
自拍軟體文件夾名稱大全 瀏覽:328
程序員留學移民 瀏覽:52
梁中間部位箍筋加密區 瀏覽:119
頻譜分析pdf 瀏覽:752