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
score = 85 attendance = 90 submitted = True if score >= 60: if attendance >= 80: if submitted: print("Pass with good standing") else: print("Pass but missing assignment") else: print("Pass but low attendance") else: print("Fail")
Pass with good standing