Write a function is_a_number(string) that takes a string as a parameter and returns True if the string is an integer value, otherwise returns False. You may assume the string has at least one character in it.
For example:
Test
Result
print(is_a_number('sorry'))
False
print(is_a_number('453'))
True