Answers for "python echo output to file"

0

python save output to file

with open("output.txt", "a") as f:
    print("Hello StackOverflow!", file=f)
    print("I have a question.", file=f)
Posted by: Guest on October-08-2020
0

python execute echo to file

import os
string="This is test"
os.system("echo "+string+">> ~/Desktop/file.txt")
Posted by: Guest on August-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language