Answers for "force a user to enter a float in python"

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

Code answers related to "force a user to enter a float in python"

Python Answers by Framework

Browse Popular Code Answers by Language