Python에서 텍스트 파일에 문자열 쓰기
Python에서는 TotalAmount와 같은 문자열 변수의 값을 텍스트 문서. 방법은 다음과 같습니다.
컨텍스트 관리자를 사용하면 파일이 항상 닫히게 됩니다.
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} 또는 {}:
with open("Output.txt", "w") as text_file: text_file.write("Purchase Amount: {}".format(TotalAmount))
Python3에서는 print()와 함께 선택적 파일 매개변수를 사용합니다.
with open("Output.txt", "w") as text_file: print("Purchase Amount: {}".format(TotalAmount), file=text_file)
또는 Python3.6에서 f-문자열을 사용합니다.
with open("Output.txt", "w") as text_file: print(f"Purchase Amount: {TotalAmount}", file=text_file)
위 내용은 Python에서 텍스트 파일에 문자열을 어떻게 쓸 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!