C-16-Q081mediumsingle_mcq
After test_input = int(input()), type(test_input) is:
After test_input = int(input()), type(test_input) is:
- astr
- bint
- cfloat
- dbool
ব্যাখ্যা
The inner input() returns a string, and int() converts that string to an integer, so the stored value's type is int. The explicit conversion overrides the default string return type.