1️⃣ Built-in Functions

  • Python has multiple inbuilt functions and they are already defined for us.

  • Built-in functions are used in code to perfrom dedicated tasks.

Some of the built-in functions are:

  • print(): to print statement on output console.

  • float(): to convert object into float.

  • filter(): to filter out items from iterable object.

  • super(): to call parent class objects.

  • zip(): it will prepare single iterable object using multiple iterables.

  • input(): to accept input from user.

  • isinstance(): to identify the datatype of variable.

  • str(): to convert object into string.

We are going to study some more built in python functions in intermediate and advanced sections.