What is the best way to determine the float number? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the best way to determine the float number?

Hey, guys! What is the best way to determine if the entered number is a float type?

21st Aug 2019, 9:11 AM
Сергей Серёгин
Сергей Серёгин - avatar
13 Answers
+ 2
You can also look at isinstance() https://www.w3schools.com/JUMP_LINK__&&__python__&&__JUMP_LINK/ref_func_isinstance.asp but for user input, this might also require eval(), which I was trying to avoid. Using this, print(isinstance(39, float)) will return false, which is the behaviour you want.
21st Aug 2019, 12:46 PM
Hatsy Rei
Hatsy Rei - avatar
+ 2
Guys, I extremely strongly did not want to use eval () on this tried to do at least something that can replace it! https://code.sololearn.com/cV7IlUXY7KiL/?ref=app - Is this another way to determine the float number?
21st Aug 2019, 9:17 PM
Сергей Серёгин
Сергей Серёгин - avatar
+ 2
Сергей Серёгин Actually, if you finally plan to use regex, we can completely skip the try catch statements, but remember to add word boundaries for a proper regex search. https://code.sololearn.com/c0q4ovO558ll/?ref=app
23rd Aug 2019, 2:33 PM
Hatsy Rei
Hatsy Rei - avatar
+ 1
Hatsy Rei. This way doesnt work for me. Since when you enter a number of 3, the program thinks that the user has entered a number of float type
21st Aug 2019, 9:22 AM
Сергей Серёгин
Сергей Серёгин - avatar
+ 1
Hatsy Rei Perfectly! But what to do with "3." and ".3"? I suggest we use regular expressions. Since I found no other way https://code.sololearn.com/cdRcroAKOyiL/?ref=app good?
23rd Aug 2019, 12:50 PM
Сергей Серёгин
Сергей Серёгин - avatar
+ 1
the best solution and shortest: My 4 lines snippet solution: ................ if input % 2 != 0: return „float number“ else : return „Int number“ ................... lol
19th Sep 2019, 11:38 AM
milian filip
milian filip - avatar
0
You can try to convert it to float. If an exception is caught, the input isn't float. try: n = float(input()) # n is float except ValueError: # n is not float
21st Aug 2019, 9:14 AM
Hatsy Rei
Hatsy Rei - avatar
0
My code can help you check if the input value contains a decimal point. str=input() if (str[0]=='-'): str=str[1:] if (str.isdigit()): print('It is an integer.') else: print('It is a decimal or float number. ')
21st Aug 2019, 9:46 AM
Ketchup🍅
Ketchup🍅 - avatar
0
Giorganio - 1) Why do you wrap "input" in "str" 2) "isdigit" will show "False" at negative number
21st Aug 2019, 12:42 PM
Сергей Серёгин
Сергей Серёгин - avatar
0
Сергей Серёгин 1) Actually,it is redundant as the input is already a string. 2) In order to make my code work for negative numbers,I have modified my code.
21st Aug 2019, 1:02 PM
Ketchup🍅
Ketchup🍅 - avatar
0
Cbr✔[ Most active ] I understand your concerns but "&#$@+%+" and alphabets are not something that will appear in a number so I think there will be no problem.
21st Aug 2019, 1:54 PM
Ketchup🍅
Ketchup🍅 - avatar
0
Сергей Серёгин If you wish, but even calculators accept 3. and .3 notations. I see it unnecessary, but no harm to go the extra mile.
23rd Aug 2019, 12:59 PM
Hatsy Rei
Hatsy Rei - avatar