I am a bit new to Python, and trying to do something simple I'm sure. I want to ask someone their name as the initial raw_input and then I want that name to be used to create a file. This is so that any additional raw_input taken from that user it gets recorded to that file.
raw_input("What is your name?")
file = open("newfile.txt", "w")
I have the above code that will create a file called newfile.txt, but how can I make it so that the requested name will be used as the file name? Thank you!
file = open("user.txt", "w")
Save the name in a variable and use it :