Quick actions

cmd+k|ctrl+k

Navigation

Languages

Augmented assignment operator

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-10T06:19:21.198063Z

Updated

2026-07-10T06:19:21.198063Z

value=5
value-=2

print(value)
INFO