Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 64)
64.
How can you create a new text file named "new_file.txt" and write the text "Hello, World!" to it?
new_file("new_file.txt", "Hello, World!")
with open("new_file.txt", "w") as file:
    write_text(file, "Hello, World!")
text.write("new_file.txt", "Hello, World!")
with open("new_file.txt", "w") as file:
    file.write("Hello, World!")
Answer: Option
Explanation:
Using a context manager to open the file and writing the text to it.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.