Functions in Python
Functions in python To define a function we use “def” keyword We can use functions as many time we want to. We dont have to declare a function again and again we just have to declare it once and then we can use it. Syntax for function def function_name(): Functions can be empty paranthesis or with arguments Functions without arguments Example:- def name(): print('saina') name() Functions with arguments
The post Functions in Python appeared first on Creative Brains.
from Functions in Python










