Built-in functions in Python

Built-in functions in Python

In this article, we will be discussing about three built-in functions of python. Let see one by one.

Note: As we all know that function should be written as function name followed by paranthesis and the name of the function must be in lower case.

1) min() function:

This function helps to find the minimum value of the list. Let's understand this by example.

AddText_01-14-08.10.21.png

2) max() function:

This max function is used to find the maximum number from the list. For instance,

max.png

3) sum() function

This sum() function is used to add all the numbers of the list. for instance,

AddText_01-14-08.09.35.png

Next article is going to be Built in string function. Hope you enjoyed this article.