Python Programming - Console Input/Output - Discussion

Discussion Forum : Console Input/Output - General Questions (Q.No. 12)
12.
How can you read a floating-point number from the console?
read_float()
float(input())
input().to_float()
parse_float(input())
Answer: Option
Explanation:
To read a floating-point number from the console in Python, you can use float(input()).
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.