Re: [Tutor] Python __del__ method

2017-07-12 Thread Jia Yue Kee
Hi Eryk, Thanks for the detailed explanation given. I think I got it now. :) Regards, JY -Original Message- From: eryk sun [mailto:eryk...@gmail.com] Sent: Wednesday, July 12, 2017 8:13 AM To: tutor@python.org Cc: Jia Yue Kee Subject: Re: [Tutor] Python __del__ method On Wed, Jul 12,

Re: [Tutor] Python __del__ method

2017-07-12 Thread Peter Otten
eryk sun wrote: > On Tue, Jul 11, 2017 at 2:47 PM, Jia Yue Kee > wrote: >> >> Case 2: If I were to run the code in "Interactive Mode", the following >> output will be obtained: >> > x = Robot("Tik-Tok") >> Tik-Tok has been created! > y = Robot("Jenkins") >> Jenkins has been created! >