Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print('====> DISCO UKTC <====')
- name = input('Enter your name: ')
- age = int(input('Enter your age: '))
- money = float(input('Enter your money: '))
- # && -> and, || -> or, ! -> not
- if age >= 18 or money >= 20:
- print(name + ', welcome to the disco!')
- else:
- print('Bye bye, ' + name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement