Using IDLE, write a function called moreThan that takes two parameters, an integer and a string. The function should return True if a string has more than x characters or False if the string has x or fewer characters.

Example:
print(moreThan(5, “sandwich”))
>>> True