Welcome to Westonci.ca, the place where your questions find answers from a community of knowledgeable experts. Explore thousands of questions and answers from knowledgeable experts in various fields on our Q&A platform. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently.
Sagot :
Answer:
In Python:
fileName = "myfile.txt"
fname = open(fileName, "w")
fname.write("This Is File: "+str(fileName))
fname.close()
Explanation:
This initializes fileName
fileName = "myfile.txt"
This creates the file in write mode
fname = open(fileName, "w")
This writes the required string to the file
fname.write("This Is File: "+str(fileName))
This closes the file
fname.close()
The program writes a given string into a newly created file with the name of the file concatenated to the end of string written into the file. The program is written in python 3 thus ;
fileName = 'text file.txt'
#stores the name of the file into a variable.
with open(fileName, 'w') as wrtfile:
#file is opened of in the write mode and is aliased.
wrtfile.write("This is file" + str(fileName))
#writes the string into the file and add the file name the end.
Learn more :https://brainly.com/question/15086326
Thank you for visiting our platform. We hope you found the answers you were looking for. Come back anytime you need more information. Thanks for using our platform. We aim to provide accurate and up-to-date answers to all your queries. Come back soon. We're dedicated to helping you find the answers you need at Westonci.ca. Don't hesitate to return for more.