Functions in Python
Functions in Python
Built In functions
Built In functions in python are the functions which can
be used while writing the code/program without
importing any library.
Ex print() , input() , list() , tuple() etc.
Practice questions:-
Q1 Import math module and use any one function.
Q2 Import random module and use any one function.
Q3 Create a user defined function calculating sum,
cube, square using below example.