Why do I see digest replies to posts I never saw in a digest? [was: RE: Why I fail so bad to check for memory leak with this code?]

2022-07-23 Thread pjfarley3
OT to the original subject, but can anyone explain to me why in the forum digest emails I receive I often see a reply to a post that I never saw the original of in any prior digest? Peter > -Original Message- > From: Marco Sulla > Sent: Friday, July 22, 2022 3:41 PM > To: Barry > Cc:

spyder v5: invalid file name when selecting interpreter in preferences

2022-07-23 Thread Leif Svalgaard
error message: invalid file path: C:/Users/leifs/anaconda3/python3105.exe what is wrong with that? -- Leif l...@leif.org -- https://mail.python.org/mailman/listinfo/python-list

Object in List : how?

2022-07-23 Thread Khairil Sitanggang
Hello Expert: I just started using python. Below is a simple code. I was trying to check if, say, NO1 is not in the NODELIST[:].NO How can I achieve this purpose? Regards, -Irfan class Node: def __init__(self): self.NO = 0 self.A = 20 NODE = Node() NODELIST = [] NODE.NO

Information about updating my python notebook

2022-07-23 Thread nhlanhlah198506
Can I update my python account Sent from my Galaxy -- https://mail.python.org/mailman/listinfo/python-list

Re: Why do I see digest replies to posts I never saw in a digest?

2022-07-23 Thread Peter J. Holzer
On 2022-07-23 14:01:09 -0400, pjfarl...@earthlink.net wrote: > OT to the original subject, but can anyone explain to me why in the > forum digest emails I receive I often see a reply to a post that I > never saw the original of in any prior digest? I think in most cases this is because both

Re: Object in List : how?

2022-07-23 Thread MRAB
On 23/07/2022 05:28, Khairil Sitanggang wrote: Hello Expert: I just started using python. Below is a simple code. I was trying to check if, say, NO1 is not in the NODELIST[:].NO How can I achieve this purpose? Regards, -Irfan class Node: def __init__(self): self.NO = 0

Re: Object in List : how?

2022-07-23 Thread dn
On 24/07/2022 09.57, MRAB wrote: > On 23/07/2022 05:28, Khairil Sitanggang wrote: >> Hello Expert: >> >> I just started using python. Below is a simple code.  I was trying to >> check >> if, say, NO1 is not in the NODELIST[:].NO >> How can I achieve this purpose? >> >> Regards, >> -Irfan >> >> >>

Re: Object in List : how?

2022-07-23 Thread Khairil Sitanggang
Thank you. I did it as you said. Yes, I forgot to create a new object Node() for each of the 3 instances. The reason I wanted to do as I asked was that I expected Python provides that convenient feature (since it is a high level language). I use Matlab a lot and it is so rich of features that

Re: Information about updating my python notebook

2022-07-23 Thread dn
On 24/07/2022 04.16, nhlanhlah198506 wrote: > Can I update my python account Sent from my Galaxy How did you install Python, and on which OpSys? In what respect to you want to "update"? What do you mean by "notebook" - and "account"? -- Regards, =dn --

Re: spyder v5: invalid file name when selecting interpreter in preferences

2022-07-23 Thread MRAB
On 23/07/2022 18:30, Leif Svalgaard wrote: error message: invalid file path: C:/Users/leifs/anaconda3/python3105.exe what is wrong with that? Is there a file called python3105.exe in the folder C:/Users/leifs/anaconda3? That filename looks wrong to me because the file is usually called

Re: Object in List : how?

2022-07-23 Thread Khairil Sitanggang
dn, Thanks for the good analogy and explanation. I need some time to digest it. Regards, -Irfan On Sat, Jul 23, 2022 at 6:55 PM dn wrote: > On 24/07/2022 09.57, MRAB wrote: > > On 23/07/2022 05:28, Khairil Sitanggang wrote: > >> Hello Expert: > >> > >> I just started using python. Below is