Writing a loop first time in python
In the last post ( Beginning with a python program: The tail ) we started from scratch how to begin with python. In this post we will advance towards writing a for loop. Before we can start that, let us understand the structure of the program. We need to know how python would differentiate between string (text), integer (whole number), float (real number) etc. Python is beautiful because it has built-in types. Let us try to understand these types. Ipython Notebook We say that you can run python directly from terminal or command-line environment or by saving a text file as file.py and run it as python file.py in terminal. But there is another way to run and edit scripts at the same time. This is called Ipython notebook. In linux just install ipython look at how to install ipython on linux? . If you have installed anaconda which I would suggest for windows users very strongly then just look at how to run ipython notebook on windows? Once you know it just type in ana...