Quick actions

cmd+k|ctrl+k

Navigation

Languages

Python practice

Snippet info

Language

Python

Visibility

public

Author

martshipshape

Created

2023-08-31T12:58:49.023509Z

Updated

2023-09-07T13:51:33.599063Z

#Augumented statement
a = 10
#a *= 10
#a -= 10
a += 20

print(a)
INFO