what will be the output produced by the following code if input is 92
a) print(num=float(input("value:")))
b) print(float(input("value:")))
Answers
Answered by
0
answer:
hi...
explanation:
option a will give an error...
option b will return the output as
92.0...
hope it helps you ☺️
Similar questions