 |
Python Tutorial: Running Python Programs - 2015
Here is a script file named script1.py: # Python script import sys #loading a library module import math print(sys.platform) print(math.sqrt(1001)) x = "blah "; print x*3; Once saved, we can ask Python to run it at the system shell prompt: C:\workspac
www.bogotobogo.com |
 |