พิมพ์สตริงเป็นไฟล์ข้อความ


653

ฉันใช้ Python เพื่อเปิดเอกสารข้อความ:

text_file = open("Output.txt", "w")

text_file.write("Purchase Amount: " 'TotalAmount')

text_file.close()

ฉันต้องการแทนที่ค่าของตัวแปรสตริงTotalAmountลงในเอกสารข้อความ ใครช่วยกรุณาแจ้งให้ฉันทราบวิธีการทำเช่นนี้?

คำตอบ:


1214
text_file = open("Output.txt", "w")
text_file.write("Purchase Amount: %s" % TotalAmount)
text_file.close()

หากคุณใช้ตัวจัดการบริบทไฟล์จะถูกปิดโดยอัตโนมัติสำหรับคุณ

with open("Output.txt", "w") as text_file:
    text_file.write("Purchase Amount: %s" % TotalAmount)

หากคุณใช้ Python2.6 หรือสูงกว่าเราแนะนำให้ใช้ str.format()

with open("Output.txt", "w") as text_file:
    text_file.write("Purchase Amount: {0}".format(TotalAmount))

สำหรับ python2.7 และสูงกว่าคุณสามารถใช้{}แทน{0}

ใน Python3 มีfileพารามิเตอร์ทางเลือกสำหรับprintฟังก์ชัน

with open("Output.txt", "w") as text_file:
    print("Purchase Amount: {}".format(TotalAmount), file=text_file)

Python3.6 แนะนำf-stringsสำหรับทางเลือกอื่น

with open("Output.txt", "w") as text_file:
    print(f"Purchase Amount: {TotalAmount}", file=text_file)

2
สมมติว่า TotalAmount เป็นจำนวนเต็มไม่ควร "% s" เป็น "% d" หรือไม่
Rui Curado

6
@RuiCurado ถ้าTotalAmountเป็นintอย่างใดอย่างหนึ่ง%dหรือ%sจะทำสิ่งเดียวกัน
John La Rooy

2
คำตอบที่ดี ฉันเห็นข้อผิดพลาดทางไวยากรณ์กับกรณีการใช้งานที่เกือบจะเหมือนกัน: with . . .: print('{0}'.format(some_var), file=text_file)กำลังขว้างปา: SyntaxError: invalid syntaxที่เครื่องหมายเท่ากัน ...
nicorellius

4
@nicorellius หากคุณต้องการใช้กับ Python2.x คุณต้องใส่from __future__ import print_functionที่ด้านบนของไฟล์ โปรดทราบว่านี้จะเปลี่ยนทั้งหมดของงบการพิมพ์ในแฟ้มไปยังรุ่นใหม่ฟังก์ชั่นการโทร
John La Rooy

เพื่อให้แน่ใจว่ารู้ว่าตัวแปรชนิดใดที่มักจะแปลงเพื่อให้แน่ใจเช่น: "text_file.write ('จำนวนเงินที่ซื้อ:% s'% str (TotalAmount))" ซึ่งจะทำงานกับรายการสตริงลอย ints และ สิ่งอื่นใดที่สามารถแปลงเป็นสตริงได้
EBo


29

หากคุณใช้ Python3

จากนั้นคุณสามารถใช้ฟังก์ชั่นการพิมพ์ :

your_data = {"Purchase Amount": 'TotalAmount'}
print(your_data,  file=open('D:\log.txt', 'w'))

สำหรับ python2

นี่คือตัวอย่างของ Python Print String To Text File

def my_func():
    """
    this function return some value
    :return:
    """
    return 25.256


def write_file(data):
    """
    this function write data to file
    :param data:
    :return:
    """
    file_name = r'D:\log.txt'
    with open(file_name, 'w') as x_file:
        x_file.write('{} TotalAmount'.format(data))


def run():
    data = my_func()
    write_file(data)


run()

19

หากคุณกำลังใช้ numpy การพิมพ์สตริง (หรือทวีคูณ) สายเดียวไปยังไฟล์สามารถทำได้ด้วยเพียงหนึ่งบรรทัด:

numpy.savetxt('Output.txt', ["Purchase Amount: %s" % TotalAmount], fmt='%s')

13

ด้วยการใช้โมดูล pathlib ไม่จำเป็นต้องมีการย่อหน้า

import pathlib
pathlib.Path("output.txt").write_text("Purchase Amount: {}" .format(TotalAmount))

ตั้งแต่ python 3.6 มี f-strings ให้บริการ

pathlib.Path("output.txt").write_text(f"Purchase Amount: {TotalAmount}")
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.