Function call : Function Define « Function « Python






Function call

 

print pow(2,3)
print 10 + pow(2, 3*5)/3.0 
print abs(-10) 
print round(1.0/2.0) 

   
  








Related examples in the same category

1.A function definitionA function definition
2.Power functionPower function
3.Define simple function in PythonDefine simple function in Python
4.A function that writes the Fibonacci series to an arbitrary boundaryA function that writes the Fibonacci series to an arbitrary boundary
5.Define a function in PythonDefine a function in Python
6.Factorial functionFactorial function