473,472 Members | 2,241 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Lists in classes

Hello,

Learning python from a c++ background. Very confused about this:

============
class jeremy:
list=[]
def additem(self):
self.list.append("hi")
return

temp = jeremy()
temp.additem()
temp.additem()
print temp.list

temp2 = jeremy()
print temp2.list
==============
The output gives:
['hi','hi']
['hi','hi']

Why does adding items to one instance produce items in a separate
instance? Doesn't each instance of jeremy have its' own "list"?

Many thanks for clearing up this newbie confusion.

Jeremy.

Jul 12 '07 #1
9 1291
On 12 jul, 17:23, Jeremy Lynch <jeremy.ly...@gmail.comwrote:
Hello,

Learning python from a c++ background. Very confused about this:

============
class jeremy:
list=[]
def additem(self):
self.list.append("hi")
return

temp = jeremy()
temp.additem()
temp.additem()
print temp.list

temp2 = jeremy()
print temp2.list
==============
The output gives:
['hi','hi']
['hi','hi']

Why does adding items to one instance produce items in a separate
instance? Doesn't each instance of jeremy have its' own "list"?
You've defined list (very bad choice for a name), as a class variable.
To declare instance variable you should have written:
class jeremy:

Jul 12 '07 #2
On Jul 12, 10:23 am, Jeremy Lynch <jeremy.ly...@gmail.comwrote:
Hello,

Learning python from a c++ background. Very confused about this:

============
class jeremy:
list=[]
def additem(self):
self.list.append("hi")
return

temp = jeremy()
temp.additem()
temp.additem()
print temp.list

temp2 = jeremy()
print temp2.list
==============
The output gives:
['hi','hi']
['hi','hi']

Why does adding items to one instance produce items in a separate
instance? Doesn't each instance of jeremy have its' own "list"?

Many thanks for clearing up this newbie confusion.

Jeremy.
The reason it works like that is that your variable "list" isn't an
instance variable per se. Instead, you should have it like this:

<code>

class jeremy:
def __init__(self):
self.lst=[]
def additem(self):
self.lst.append("hi")
return

</code>

Now it works as expected. It's some kind of scope issue, but I can't
explain it adequately.

Mike

Jul 12 '07 #3
On 12 jul, 17:23, Jeremy Lynch <jeremy.ly...@gmail.comwrote:
Hello,

Learning python from a c++ background. Very confused about this:

============
class jeremy:
list=[]
You've defined list (very bad choice of a name, BTW), as a class
variable. To declare is as instance variable you have to prepend it
with "self."

Jul 12 '07 #4
On Jul 12, 6:23 pm, Jeremy Lynch <jeremy.ly...@gmail.comwrote:
Hello,

Learning python from a c++ background. Very confused about this:

============
class jeremy:
list=[]
def additem(self):
self.list.append("hi")
return

temp = jeremy()
temp.additem()
temp.additem()
print temp.list

temp2 = jeremy()
print temp2.list
==============
The output gives:
['hi','hi']
['hi','hi']

Why does adding items to one instance produce items in a separate
instance? Doesn't each instance of jeremy have its' own "list"?

Many thanks for clearing up this newbie confusion.

Jeremy.
You are defining the list in the class context and so it becomes a
class field/member.
For defining instance members you need to always prefix those with
self (this) in the
contexts it is available (f.e. in the instance method context).

bests,

../alex
--
..w( the_mindstorm )p.
Jul 12 '07 #5
Jeremy Lynch wrote:
Hello,

Learning python from a c++ background. Very confused about this:

============
class jeremy:
list=[]
def additem(self):
self.list.append("hi")
return

temp = jeremy()
temp.additem()
temp.additem()
print temp.list

temp2 = jeremy()
print temp2.list
==============
The output gives:
['hi','hi']
['hi','hi']

Why does adding items to one instance produce items in a separate
instance? Doesn't each instance of jeremy have its' own "list"?

Many thanks for clearing up this newbie confusion.

Jeremy.
In this code, "list" (bad name) is a class attribute and all therefor in
all instances, the "list" attribute is reference to the class attribute
unless otherwise assigned, as in __init__.

For instance, try:
temp = jeremy()
temp.additem()
temp.additem()
print temp.list

temp2 = jeremy()
temp2.list = [1,2,3]
print temp.list, temp2.list, jeremy.list
And see which ones look the same (same reference) or look different.

James
Jul 12 '07 #6
Bart Ogryczak wrote:
On 12 jul, 17:23, Jeremy Lynch <jeremy.ly...@gmail.comwrote:
>Hello,

Learning python from a c++ background. Very confused about this:

============
class jeremy:
list=[]

You've defined list (very bad choice of a name, BTW), as a class
variable. To declare is as instance variable you have to prepend it
with "self."

Ouch!

'self' is *not* a reserved ord in python, it doesn't do anything. So
just popping 'self' in front of something doesn't bind it to an instance.
Here is how it works:

class Jeremy(object): # you better inherit from 'object' at all times
classlist = [] # class variable
def __init__(self): # "constructor"
self.instancelist = [] # instance variable
def add_item(self, item):
self.instancelist.append(item)

'self' is the customary name for the first argument of any instance
method, which is always implicitly passed when you call it. I think it
translates to C++'s 'this' keyword, but I may be wrong. Simply put: The
first argument in an instance-method definition (be it called 'self' or
otherwise) refers to the current instance.
Note however that you don't explicitly pass the instance to the method,
that is done automatically:

j = Jeremy() # Jeremy.__init__ is called at this moment, btw
j.add_item("hi") # See? 'item' is the first arg you actually pass

I found this a bit confusing at first, too, but it's actually very
clean, I think.
/W
Jul 12 '07 #7
Thanks for all the replies, very impressive. Got it now.

Jeremy.

On Jul 12, 4:23 pm, Jeremy Lynch <jeremy.ly...@gmail.comwrote:
Hello,

Learning python from a c++ background. Very confused about this:

============
class jeremy:
list=[]
def additem(self):
self.list.append("hi")
return

temp = jeremy()
temp.additem()
temp.additem()
print temp.list
>
temp2 = jeremy()
print temp2.list
==============
The output gives:
['hi','hi']
['hi','hi']

Why does adding items to one instance produce items in a separate
instance? Doesn't each instance of jeremy have its' own "list"?

Many thanks for clearing up this newbie confusion.

Jeremy.

Jul 12 '07 #8
Alex Popescu a écrit :
(snip)
>
You are defining the list in the class context and so it becomes a
class field/member.
'attribute' is the pythonic term.
Jul 12 '07 #9
On Jul 13, 6:02 am, Bruno Desthuilliers
<bdesth.quelquech...@free.quelquepart.frwrote:
Alex Popescu a écrit :
(snip)
You are defining the list in the class context and so it becomes a
class field/member.

'attribute' is the pythonic term.

Thanks! I'm just a couple of weeks Python old, so I am still fighting
to use the correct vocabulary :-).
And as with foreign languages, while I am becoming better at reading I
still have problems expressing
correct ideas using correct words.

../alex
--
..w( the_mindstorm )p.

Jul 15 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

42
by: Jeff Wagner | last post by:
I've spent most of the day playing around with lists and tuples to get a really good grasp on what you can do with them. I am still left with a question and that is, when should you choose a list or...
2
by: Kakarot | last post by:
I'm gona be very honest here, I suck at programming, *especially* at C++. It's funny because I actually like the idea of programming ... normally what I like I'm atleast decent at. But C++ is a...
7
by: Chris Ritchey | last post by:
Hmmm I might scare people away from this one just by the title, or draw people in with a chalange :) I'm writting this program in c++, however I'm using char* instead of the string class, I am...
0
by: Jimmy Cerra | last post by:
I recently came up with a cool little stylesheet for definition lists. There is a small demostration for the impatient . I hope this helps someone. Here's how I did it. Definition lists are...
1
by: andrew | last post by:
Hi, I'm a C++ newbie, so apologies for this rather basic question. I've searched for help and, while I understand the problem (that the outer class is not yet defined), I don't understand what...
3
by: Claudio Grondi | last post by:
Trying to understand the outcome of the recent thread (called later reference thread): "Speed quirk: redundant line gives six-fold speedup" I have put following piece of Python code together:...
9
by: Paulo da Silva | last post by:
Hi! What is the best way to have something like the bisect_left method on a list of lists being the comparision based on an specified arbitrary i_th element of each list element? Is there,...
5
by: Gordon Airporte | last post by:
This is one of those nice, permissive Python features but I was wondering how often people actually use lists holding several different types of objects. It looks like whenever I need to group...
1
by: colin | last post by:
Hi, I have 3 object of interest wich are objects in 3d space, surface,wire,point. they are all interconnected, and they all contain lists of objects they are connected to, eg each surface will...
0
by: twdesign | last post by:
I am a Python newbie! I'm trying to list the feature classes in a dataset (Access .MDB) and then list the fields in each feature class. I'm able to list the feature classes and I'm able to list...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.