您在這裡

Built-in functions

23 二月, 2015 - 14:06

Python provides a number of important built-in functions that we can use without needing to provide the function definition. The creators of Python wrote a set of functions to solve common problems and included them in Python for us to use.

The max and min functions give us the largest and smallest values in a list, respectively:

>>> max('Hello world')'w'>>> min('Hello world')' '>>>

The max function tells us the “largest character” in the string (which turns out to be the letter “w”) and the min function shows us the smallest character which turns out to be a space.

Another very common built-in function is the len function which tells us how many items are in its argument. If the argument to len is a string, it returns the number of characters in the string.

>>> len('Hello world')11>>>

These functions are not limited to looking at strings, they can operate on any set of values as we will see in later chapters.

You should treat the names of built-in functions as reserved words (i.e. avoid using “max” as a variable name).