ok, so I have to write a program for computer science and I chose to do it in python (obviously) butI'm having trouble getting the program to open the file.
here is just a snippet of the coding in question:
elif choice == 5:
h = open("C:/Users/Dhyan/Documents/" + raw_input("Please enter the customers unique ID again... ") + ".txt")
Although when I run the program it just doesn't open
Any help would be really appreciated.
PS. when It asks me that question I put in a name of a file that does exist
and yes I tried a more simplified version (h = open("C:/Users/Dhyan/Documents/234.txt"))