this code works fine when I put the path of the file myself. but when I want to get it from users raw_input()
it doesn't work. what can I do?
import string
import randomprint "enter number between 6 and 20"
n = raw_input()
print "enter pathway of file"
p = raw_input() print "creating a new text file"
new_file = open(p, "w") #the error on this line
m = int(n)print random.choice(string.ascii_lowercase)for i in range(0,m):for j in range(0,m):new_file.write(random.choice(string.ascii_lowercase))new_file.write("\n")