Posts

Showing posts with the label working with python

working with python IDLE

Image
Working with Python IDLE Before you start working in Python, you need to install python on your computers. Multiple distributions of Python are available today. Anaconda Python Distribution is one such highly recommended distribution. Many popular IDEs are also available like Spyder IDE, PyCharm IDE etc. There is a default installation available from www.python.org which is CPython installation. CPython is the original Python implementation. It comes with Python IDLE and Pip. When you download Python in our computer, then you may notice a new program on your machine called IDLE. IDLE is Python’s Integrated Development and Learning Environment. Python IDLE makes it the perfect tool for a beginning programmer. You can work in python in two ways: Interactive Mode(Immediate Mode) Script mode Working in interactive Mode In interactive mode there is a shell between the user and the operating system which reads a Python statement, evaluates the result of that stateme...