Answers for "py float input"

1

input float python

# python code to take float input
val = float(input("Enter any number: "))
print("value of val2: ", val)
print("type of val2: ", type(val))
Posted by: Guest on April-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language