БГ
Size: a a a
БГ
ᅠ
ᅠ
ᅠ
VA
БГ
py3
def t(p): del p
d = {"some": "other"}
t(d)
print(d)
{'some': 'other'}
БГ
БГ
БГ
py3
def t(p): del p
d = {"some": "other"}
t(d)
print(d)
{'some': 'other'}
py3
def t(p):
del p
print(p)
d = {"some": "other"}
t(d)
Traceback (most recent call last):
File "1068288481/source.py", line 5, in <module>
t(d)
File "1068288481/source.py", line 3, in t
print(p)
UnboundLocalError: local variable 'p' referenced before assignment
БГ
ᅠ
БГ
ᅠ
GS
ᅠ
БГ