C-17-Q095mediumsingle_mcq
To take the word as input, the function used is:
To take the word as input, the function used is:
- a
int(input(...)) - b
input(...) - c
float(input(...)) - d
read(...)
ব্যাখ্যা
The word is text, so plain input(...) is used to read it as a string. Wrapping it in int() or float() would attempt numeric conversion, which is wrong for a word.