How to read input as float in Python

1 Answer

0 votes
f = float(input("Enter a number: "))

print(f)


'''
run:

Enter a number: 3.14
3.14

'''

 



answered Sep 25, 2019 by avibootz

Related questions

1 answer 168 views
2 answers 207 views
1 answer 208 views
208 views asked Sep 11, 2018 by avibootz
1 answer 271 views
1 answer 254 views
...