May-15-2024, 12:48 PM
(This post was last modified: May-15-2024, 12:48 PM by Gribouillis.)
(May-15-2024, 10:24 AM)Schauster Wrote: So if I understood correctly, if I have the 3 >>>, then I cannot call python scripts? But if I am outside of the >>>, I can call them if I type python first then the correct path?Exactly. When you have the 3 >>> you are within the "Python interpreter". You type python statements and they are executed by Python. When you are outside the >>>, you are in Windows' command interpreter and you type Windows commands, which includes calling a program such as python.exe.
« We can solve any problem by introducing an extra level of indirection »