0
is del makes the value assigned to the variable zero?
5 odpowiedzi
+ 1
it suppresses the variable. del is for delete
0
I believe that the = sing assigns a variable.
0
make sure you remember to use open and closed parentheses.
0
parentheses are not required for del
0
in computer theory, zero is still a value. using del on a variable will remove it's assignment, making it null. you will no longer be able to call that variable with assigning it to something new.