Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
lst = ["python", "c", "c++"] print(lst) del lst print(lst) ''' run: ['python', 'c', 'c++'] Traceback (most recent call last): File "test.py", line 7, in <module> print(lst) NameError: name 'lst' is not defined '''