2
Reply

What are functions in Python?

Dinesh Beniwal

Dinesh Beniwal

6y
1.1k
0
Reply
    Function is a block of code . In python using definitely we can create a function. Example def show (): print ('Hello') show()

    functions are user-defined or system-defined, they are chuck of code that is defined to achieve a particular task.

    Functions are also useful when we need to repeat a given task. Hence no need to write code again and again

    Syntax:

    1. def [function_name]:
    2. [task_defination]