Conditionals

Run Settings
LanguagePython
Language Version
Run Command
can_drive = False can_fly = True if can_drive and can_fly: print("do you want to drive or fly") print("whatever you want") elif can_drive or can_fly: print("you can travel but only one or the other!") else: print("don't travel pls") # ternary operator is_friend = True can_dm = "dm allowed" if is_friend else "dm not allowed" print(can_dm)
Editor Settings
Theme
Key bindings
Full width
Lines