#sample program for execution #to enter into python type as "python" or write a file in vi or nano (ctrl+x and then y) ##for quite() to exit the python mode
x=range(10) y="this is my first file in python" print(x) print(y) z=[10,20,30] for a in z: print(a) print(a*10) for b in x: print(a+b) #x="python is a open source s/w" #print(x) #print(x.upper()) #print(x.lower()) #print(x.title()) #print(x.isdigit())
#line="python is repopular in 2016" #print(line) #words=line.split() #for w in words: