Extend the Python program below.
level = int(input("Enter level number: "))
The program should keep prompting the user to enter a level number until they enter a level number that is between 1 and 50 inclusive.
You should use meaningful variable name(s) and correct Python syntax in your answer.