Write a Python program to typecast given input to float
Topic: Write a Python program to typecast given input to float
Solution
num = float(input("Input a value: ")) print(num)
List all Python Programs
Solution
num = float(input("Input a value: ")) print(num)