Run ❯
Get your own Python server
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
age = 25 is_student = False has_discount_code = True if (age < 18 or age > 65) and not is_student or has_discount_code: print("Discount applies!")
Discount applies!