Python has a range of built-in functions
Note: To refer to the built-in-function, please refer to the official documentation.
abs()
and type()
¶abs()
to get and print the absolute value of a positive number.¶abs()
to get and print the absolute value of a negative number¶type()
to get and print the type of a float¶type()
to get and print the type of an integer¶type()
to get and print the type of a boolean value¶type()
to get and print the type of a string¶max()
and min()
¶max()
to get and print the largest of inputs of your choosing that are all integers¶max()
to get and print the alphabetical maximum of inputs of your choosing that are all strings¶min()
to get and print the smallest of inputs of your choosing that are all floats¶min()
to get and print the alphabetical minimum of inputs of your choosing that are all strings¶