Programming Examples
Python program to accept file name and data from user and write data on file
Python program to accept file name and data for write on file, create and write data on file.
Solution
fname=input("Enter the file name : ")
fp=open(fname,"w")
data=input("Enter the data for Write : ")
print(fp.write(data))
fp.close()
Output/ Explanation:
Enter the file name : mynewfile.txt
Enter the data for Write : ram is a good boy.
18