Computer Science, asked by harshkaushik762000, 1 year ago

In Python what is the input() feature best described as?

Answers

Answered by finnynevina
2

Answer:

In python, the input features are best described as a built-in features. It can come from a database, mouse clicks, keyboard or an internet. It is accessible to the end users. There are multiple built-in functions in the python that are always available for use.

Answered by Anonymous
7

input() function in python is used to accept input from the user.

  • It is a pre-defined function that allows the user to enter the input.
  • The input can be some text input.
  • When the input function is called the program is set to halt and it waits for the input to be entered by the user.
  • Once the user presses ENTER key, the program  resumes.
Similar questions