Quick actions

cmd+k|ctrl+k

Navigation

Languages

Scope Rules

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-23T09:53:47.534779Z

Updated

2026-07-23T09:53:47.534779Z

a=1

def new():
    a=5
    return a
    
    

print(new())
print(a)

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