Python में console से input लेने के लिए कौन सा function प्रयोग होता है?
Which function is used to accept console input in Python?
A
scan()
B
input()
C
get()
D
read()
Explanation
Short Explanation (Bilingual):
-
English:
input()is used to take user input from the console in Python. -
हिंदी: Python में console से इनपुट लेने के लिए
input()का उपयोग किया जाता है।
Example:
name = input("Enter your name: ")
Correct Answer: B) input()