102k views
2 votes
The _____ function is used to acquire data from the user.

Display()
Input()
Print()

User Bwind
by
5.2k points

2 Answers

3 votes

Answer:

A. input()

Step-by-step explanation:

I took the quiz

User Tranquil Tarn
by
3.9k points
4 votes

Answer:

The input() function is used to acquire data from the user.

Step-by-step explanation:

We will explain the purpose of each function one by one.

display() and print() functions are output functions that are used to display outputs in python.

Acquiring data from user means that the user has to give some data as input.

Python provides the input() function with a prompt of string to display a message to take input from user.

Hence,

The input() function is used to acquire data from the user.

User Caster Troy
by
4.3k points