A developer has developed a program to check the number of eggs being used in a recipe. The user should enter a number of eggs and save it as eggsUsed, the user should only be able to enter a positive number of eggs, ie one egg or more. The maximum number of eggs that can be used in the recipe is eight.
Write a program in Python, so that the number of eggs is validated to ensure the user is made to re-enter the number of eggs used until a valid number is entered.
