![]() |
|
#3
|
|||
|
|||
|
Hi,
When you call del ball0503 you are deleting the reference to the variable ball0503. However, the list still contains a reference to the ball. To delete the list you would need to do the following: Code:
del ballBasket[:] |
|
|