C-16-Q140mediumsingle_mcq
To take a fractional input from the user (e.g., 4.2) and store it as a float, we write:
To take a fractional input from the user (e.g., 4.2) and store it as a float, we write:
- a
x = input() - b
x = int(input()) - c
x = float(input()) - d
x = str(input())