How to convert the integer to float in Python

preview_player
Показать описание
How to convert the integer to float in Python
Рекомендации по теме
Комментарии
Автор

def isfloat(num):
try:
float(num)
return True
except ValueError:
return False

ABCABC-swmh