<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
def is_number(s):
    """ Checks if string s is a number. """
    try:
      float(s)
      return True
    except ValueError:
      return False
</pre></body></html>