Python for Testers #30 – Built In Functions in Python

In this Python for Testers Tutorial we will learn about Built In Functions in python. This video will cover some of the very important and commonly used Python Built In Functions with examples.

Some of the built-in functions which we are going to learn are as follows:

# max() – Returns the largest item in an iterable

# min() – Returns the smallest item in an iterable

# iter() – Returns an iter object # Reverse() – Returns a reversed iterator

# next() – Returns the next item in an iterable

# slice() – Returns a slice object # sorted() – Returns a sorted list # sum() – Sums the items of an iterator

# input() – Allows user to input value