C-16-Q075mediumsingle_mcq
To take data from the user during program execution, we use:
To take data from the user during program execution, we use:
- a
read() - b
get() - c
input() - d
scanf()
ব্যাখ্যা
input() is Python's built-in function for reading data typed by the user at runtime. scanf() belongs to C, and read()/get() are not the standard way to collect interactive user input in Python.