I just started learning python, and now I'm trying to make some very newbie programming on my own, with my own ideas. However, I just cannot figure this out:
print("It is 8:11 AM. You have no job to go to. Do you want to spend some hours looking and applying for jobs? (Y/N)" )
answer = input()
resume = 0
if answer == "N" or "n" and not "Y" or "y":
print("Fak")
else:
if answer == "Y" or "y":
if resume == 0:
print("You still haven't done your resume. You cannot apply to a job without one.")
else:
print("You have found 2 jobs, but your experience level was too low for them.")
print("It is 11:24 AM. What would you like to do?")
No matter how I tried, with my knowledge, the "Fak" always gets printed. I just can't figure it out, it seems right to me.
Where did I fak up?
Sorry if the formatting or anything is wrong, this is my first time using Stackoverflow.