這可能是一個簡單的修復,但有一點麻煩讓我的頭周圍;我在讀從不同的臺詞,並希望更換具有可變一條線,但它與box1
而不是值55, 55.7
str.replace與變量
box1 = 55, 55.7
box2 = -9, -7
with open('parttest', 'r') as file :
filedata = file.read()
filedata = filedata.replace('box_lat', 'box1')
filedata = filedata.replace('box_lon', 'box2')
with open('buildtest', 'w') as file:
file.write(filedata)
內(單人或雙人)任何引用是一個字符串在Python – sam
@ sam2090或三重或六重引號! ''「」這些也是「」「'''和這些!」 –
@AdamSmith是的。多行字符串,以防未來的讀者不知道它們叫做什麼 – sam