0 votes
in Python by
How Do We Write A Function In Python?

1 Answer

0 votes
by

We can create a Python function in the following manner.

Step-1: to begin the function, start writing with the keyword def and then mention the function name.

Step-2: We can now pass the arguments and enclose them using the parentheses. A colon, in the end, marks the end of the function header.

Step-3: After pressing an enter, we can add the desired Python statements for execution.

Related questions

0 votes
asked May 17, 2020 in Python by SakshiSharma
0 votes
asked Oct 11, 2021 in Python by rajeshsharma
...