Source code for kyu_8.keep_up_the_hoop.hoop_count

"""
Solution -> Keep up the hoop.

Created by Egor Kostan.
GitHub: https://github.com/ikostan
"""


[docs] def hoop_count(n: int) -> str: """ 'hoop_count' function. A program where Alex can input (n) how many times the hoop goes round, and it will return him an encouraging message :param n: int :return: str """ if n < 10: return "Keep at it until you get it" return "Great, now move on to tricks"