Respuesta :

Answer:

The input function

Explanation:

It's properly written as input(), not Input() because of case sensitivity.

I'll explain this question using the following code statement/illustration

a = int(input("User Input: "))

The above code statement prompts the user to input an integer value to into integer variable a.

Without the input function, this won't be possible.

The input function can be used along with various data types such as

b = input("Username :") ----- String

c = float(input("Salary :")) ----- Float