HackerRank Python - Detect Floating Point Number
You are given a string N.
Your task is to verify that N is a floating point number.
In this task, a valid float number must satisfy all of the following requirements:
- # Enter your code here. Read input from STDIN. Print output to STDOUT
-
-
- from re import match, compile
-
- pattern = compile('^[-+]?[0-9]*\.[0-9]+$')
- for _ in range(int(input())):
- print(bool(pattern.match(input())))