I\'ve always had a bit of trouble figuring out how to get Python set up properly in Windows.
I\'ve already set up path=%path%;C:\\python27 , so I\'m able to open .py
Please, follow a tutorial
sys.path.append(r'C:\Users\Jimmy\Documents\Python')
You can't randomly put \ in a string.
When you look at the error message, notice that all of the System-supplied path elements have \\ to escape the meaning of the \.
A tutorial will show you how to use r" strings to achieve this easily.