Python Functions and Modules
Python Functions and Modules
PYTHON PROGRAMMING
PROGRAMMING -- II
Chap - 5 By-
Prof. A. P. Chaudhari
1) Required arguments:
Required arguments are the arguments passed to a function in correct
positional order. Here, the number of arguments in the function call should match
exactly with the function definition.
Functions:
To call the function printme, you definitely need to pass one argument, otherwise
it gives a syntax error as follows −
Creating Module: To create a module just save the code you want in a file with file
extension .py
e.g: Write the following code and save file as module1.py
def fun1(name):
print ‘Hello ’, name
return
Module:
How to use module:
You can use any Python source file as a module by executing an import
statement in some other Python source file.
Syntax − import module1[, module2,... moduleN]
When the interpreter encounters an import statement, it imports the
module.
For example, to import the module module1.py, you need to put the following
command at the top of the script −
# Import module module1
import module1
# Now you can call defined function that module as follows
module1.fun1(“Parth")
Import the module named module1, and access the person1 dictionary:
import module1
a = z1.person1['Age']
print 'Age:', a
O/P: Age: 25
Module:
Built-in Modules:
A large number of pre-defined functions are also available as a part of
libraries bundled with Python distributions. These functions are defined in
modules. A module is a file containing definitions of functions, classes, variables
or any other Python objects. Contents of this file can be made available to any
other program.
There are several built-in modules in Python, which you can import
whenever you like. They are loaded automatically as the interpreter starts and are
always available.
e.g.: import platform
a = platform.system()
print a
O/P: Windows
Module:
1) OS Module:
It is possible to automatically perform many operating system tasks. The
OS module in Python provides functions for creating and removing a directory
(folder), fetching its contents, changing and identifying the current directory, etc.
i) Creating Directory:
We can create a new directory using the mkdir() function from the OS
module.
e.g.: import os
os.mkdir("D:\Demo1")
O/P: 01 Syllabus
02 Reference Book
03 TrainingPPTs Sessionwise
04 WorkBook
05 TrainingSoftwares
untitled.bmp
Module:
iii) Remove Directory:
Python method removedirs() removes directories recursively. If the leaf
directory is successfully removed, removedirs() tries to successively remove
every parent directory displayed in path.
e.g.: import os
os.removedirs("D:\Demo1")
Module:
2) Math module:
Python math module is defined as the most famous mathematical
functions, which includes trigonometric functions, representation functions,
logarithmic functions, etc. Furthermore, it also defines two mathematical
constants, i.e., Pie and Euler number, etc.
Pie (n): It is a well-known mathematical constant and defined as the ratio of
circumstance to the diameter of a circle. Its value is 3.141592653589793.
e.g.: import math
print(math.pi) O/P: 3.14159265359
Euler's number(e): It is defined as the base of the natural logarithmic, and its
value is 2.718281828459045.
e.g.: import math
print(math.e) O/P: 2.71828182846
Module:
i) log10(): This method returns base 10 logarithm of the given number and called
the standard logarithm.
e.g.: import math
x=13
print 'log10(13) is :', math.log10(x)
O/P: log10(13) is : 1.11394335231
ii) pow(x,y): This method returns the power of the x corresponding to the value of
y. If value of x is negative or y is not integer value than it raises a ValueError.
e.g.: import math
number = math.pow(10,2)
print "The power of number:",number
O/P: The power of number: 100.0
Module:
iii) floor(x): This method returns the floor value of the x. It returns the less than or
equal value to x.
e.g.: import math
number = math.floor(10.25201)
print "The floor value is:",number
O/P: The floor value is: 10.0
iv) ceil(x): This method returns the ceil value of the x. It returns the greater than
or equal value to x.
e.g.: import math
number = math.ceil(10.25201)
print "The Ceilling value is:",number
O/P: The Ceilling value is: 11.0