Jan 1, 2013

Chapter 2 - Python Math Functions


 


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 2 - Math Function\n------------------------------------\n"


 


print "100 divided by 16 is:", 100 / 16 , "& Remainder is:", 100 % 16


 


#END


 




 


Step 2


 


Change file permission to executable using chmod command.


 


Step 3


 


Execute the python file.


 


python-math-function-2



 




 

No comments:

Post a Comment