Question:medium

Which of the following functions is used to read input from the user in Python?

Show Hint

In Python, the `input()` function is used to read a string from the user. You can convert it to other types like integer or float using `int()` or `float()`.
  • get_input()
  • input()
  • read()
  • scan()
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0