Ah. So what do they expect you to use?
Or do they just leave you to your own devices? To try and figure it out alone?
How can they expect any student to study if they don't provide the tools needed for studying...
If they don't even set you up with the Python compiler, they are truly evil.
You can invoke the basic command line compiler with:
- Code: Select all
python path/to/your/script.py
Or if it isn't even set up properly to be included in your system's PATH environmental variable, you need to know the location of python.exe as well:
- Code: Select all
C:\Program Files (x86)\Python\python.exe path/to/your/script.py
but that is just ugly. Especially if it is a shared install:
- Code: Select all
\\server1\shared\school\apps\programming\pythons\v2.7\Python\python.exe path/to/your/script.py
Ouch.
In my programming classes we always have multiple possible IDEs to choose from on every computer. For example with Haskell we got four, and I went with GHCi (Glasgow Haskell Compiler Interactive) for compiling and coded in Notepad++. For Powershell we got three choices, and I went with ISE (Windows PowerShell Integrated Scripting Environment) for both compiling and writing code, occasionally returning to Notepad++ because I'm more used to it.