Python 2.4 - Points to remember
Points to remember · A Python program file is always saved with “.py” extension. · Python programs can be written in either interactive mode or script mode. · Interactive mode should be used only for practise. · Script mode should be used to write actual Python programs. · Python’s command line window and Python’s IDLE window can be used as interactive mode. Python’s IDLE window and any Text Editor can be used as script mode. · I recommend Python’s IDLE window to write programs for new learners. · Python has a very vast library used to develop variety of applications. · Python is...