News

Quick LinksSet Up Your Development EnvironmentWrite Your First Python ProgramWrite Comments in Your CodeStore Data in ...
A typical way of running a python script from the command line is: python hello.py. However, if you add an additional -i while running the same script e.g python -i hello.py it offers more advantages.
Although Python code is almost always fast enough for the task, sometimes it isn’t. In those cases, you need to find out where and why it lags, and do something about it.