I honestly have no idea what I'm doing but, I know as soon as I get a bit of help, it'll come to me. So, here's the code and I know I've done something wrong? Won't let me complete the input?
"""
WeeklyPay.py: generate payroll stubs for all hourly paid employees and summarizes them
"""
def main():
"""
WeeklyPay.py generates and prints and employee pay stubs based off hours_worked, hourly_rate, and gross_pay
:return: None
"""
total_gross_pay = 0
hours_worked = 0
more_employee = input()
more_employee = input("Did the employee work this week? Y or y for yes: ")
while more_employee == "Y" or "y":
hours_worked = input("How many hours did the employee work? ")
hourly_rate = input("Please enter the employee's hourly rate: ")