Are you an adult?
Assuming that adult age begins at 18, return a string based on the given number as shown in the example.
Sample Code:
def anAdult(num):
# Enter your logic here...
Examples:
Input: 18
Output: '18 years of experience of being a human.'
Explanation: A specific output will be printed if the given number is >= 18.
Input: 17
Output: '1 more year to go.'
Explanation: Another specific output will be printed if the given number is < 18.