Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 230 Bytes

File metadata and controls

14 lines (10 loc) · 230 Bytes

Walrus

Modify the following code so it will use the walrus operator:

x = 50
y = x - 20
if y == 30:
    print("super")

Solution

Click here to view the solution