3. PyomoFundamentals

Running Python Programs •Interpreters: –Interactive mode (type ‘python’at command line) –IDLE CSE Environment (type ‘idle’at command line) •Scripts –Create a file beginning with: #!/usr/bin/env python –Then add your code 4 #!/usr/bin/env python print ‘Hello world’ Running ‘Hello World’ in IDLE (above) and as a script ... ................
................