Step 1
Open any text editor (gedit,pico,vi,nano) then enter the following python script and save the file with .py extension.
#!/usr/bin/python
#Author : Jijo K Jose
print "\n————————————\nChapter 11 – For Loop \n————————————\n"
for i in range(10,25,2):
print i
print "\n————————————–\n"
#END