# Review section print("\n--------- Review of Whanau Pizzeria ---------") # Ask for rating print("Please rate your overall experience at Whanau Pizzeria (1-5) stars") rating = input("Enter your rating: ") # Validate rating while not rating.isdigit() or int(rating) < 1 or int(rating) > 5: print("Invalid rating. Please enter a number between 1 and 5 stars.") rating = input("Enter your rating: ") # Convert rating to integer rating = int(rating) # Ask for comments print("\nWould you like to leave any comments about your experience?") comments = input("Enter your comments (or press Enter to skip): ") # Display review summary print("\nThank you for your review!") print(f"You rated Whanau Pizzeria {rating}/5 stars.") if comments: print(f"Comments: {comments}") print("\nWe appreciate your feedback and hope to see you again soon at Whanau Pizzeria!")