Quick actions

cmd+k|ctrl+k

Navigation

Languages

Scope Rules

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-23T10:24:13.00759Z

Updated

2026-07-23T10:24:13.00759Z

total=0

def new(total):
    
    total+=1
    return total
    
    

print(new(new(new(total))))

# 1 Start with local
# 2 Parent local
# 3 Global
# 4 Built in python functions.
INFO