Find solutions to your questions with the help of IDNLearn.com's expert community. Join our interactive Q&A community and access a wealth of reliable answers to your most pressing questions.
f = open("my_name.txt", "w")
f.write("Your name here")
f.close()
You just have to change Your name here to your actual name. I wrote my code in python 3.8. I hope this helps.