Computer Science, asked by shubhamgupta909324, 7 months ago

Write the two function name which is belongs to Pyplot?

Answers

Answered by ritu028125
7

. Functions

. Functions3.1. Definitions and use

. Functions3.1. Definitions and useIn the context of programming, a function is a named sequence of statements that performs a desired operation. This operation is specified in a function definition. In Python, the syntax for a function definition is:

. Functions3.1. Definitions and useIn the context of programming, a function is a named sequence of statements that performs a desired operation. This operation is specified in a function definition. In Python, the syntax for a function definition is:def NAME( LIST OF PARAMETERS ):

. Functions3.1. Definitions and useIn the context of programming, a function is a named sequence of statements that performs a desired operation. This operation is specified in a function definition. In Python, the syntax for a function definition is:def NAME( LIST OF PARAMETERS ): STATEMENTS

. Functions3.1. Definitions and useIn the context of programming, a function is a named sequence of statements that performs a desired operation. This operation is specified in a function definition. In Python, the syntax for a function definition is:def NAME( LIST OF PARAMETERS ): STATEMENTSYou can make up any names you want for the functions you create, except that you can’t use a name that is a Python keyword. The list of parameters specifies what information, if any, you have to provide in order to use the new function.

A header, which begins with a keyword and ends with a colon.

A header, which begins with a keyword and ends with a colon.A body consisting of one or more Python statements, each indented the same amount – 4 spaces is the Python standard – from the header.

A header, which begins with a keyword and ends with a colon.A body consisting of one or more Python statements, each indented the same amount – 4 spaces is the Python standard – from the header.In a function definition, the keyword in the header is def, which is followed by the name of the function and a list of parameters enclosed in parentheses. The parameter list may be empty, or it may contain any number of parameters.

Defining a new function does not make the function run. To do that we need a function call. Function calls contain the name of the function being executed followed by a list of values, called arguments, which are assigned to the parameters in the function definition. Our first examples have an empty parameter list, so the function calls do not take any arguments. Notice, however, that the parentheses are required in the function call:

Similar questions