Python Program to write some data into a file by user input
In this program, you will learn how to write some data into a file by user input in Python.
file = open("abc.txt", "a")
Example: How to write some data into a file by user input in Python
file = open("abc.txt", "a")
name = input("Enter your name : ")
age = input("Enter your age : ")
file.write(name)
file.write(age)
print("Success writing process")
Output:
Enter your name : John
Enter your age : 28
Success writing process