I'm learning Python for about a month and I'm trying to do something easy, but don't know how to continue with this:
age = int(input('Kolik je ti let? '))
if age >= 0 and age <= 17:
print('You are not old enough to drive a car, sorry.')
if age >= 18 and age <= 200:
print('You can drive a car.')
is_licenced = str(input('Wait a minute. there is another important question, do you have driver licence? Say Yes or No: '))
if is_licenced == 'Yes' or 'yes' or 'YES':
print('Alright, I trust you, you can drive a car now.')
if is_licenced == 'NO' or 'No' or 'no':
print('Use a bike...')
When I write no, it gives me both answers, for YES and for NO, how to separate the output for both answers?