mples:* >>> is_json('{"name": "Peter"}') # returns true >>> is_json('[1, 2, 3]') # returns true >>> is_json('{nope}') # returns false :param input_string: String to check. :type input_string: str :return: True if json, false otherwise NF)