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 163 views
2 answers 198 views
1 answer 203 views
203 views asked Sep 11, 2018 by avibootz
1 answer 264 views
1 answer 249 views
...