Cody Bable

Generation

generate functionThu, 20 Apr 2023

check if string is a number

def is_number(str): try: float(str) return True except ValueError: return False is_number("1.0")

Questions about programming?Chat with your personal AI assistant