python list attributes code example
Example 1: python list methods
list.append(x)
list.extend(iterable)
list.insert(i, x)
list.remove(x)
list.pop([i])
list.clear()
list.index(x[, start[, end]])
list.count(x)
list.reverse()
list.sort(key=None, reverse=False)
list.copy()
Example 2: see attributes of object python
>>> class new_class():
... def __init__(self, number):
... self.multi = int(number) * 2
... self.str = str(number)
...
>>> a = new_class(2)
>>> a.__dict__
{'multi': 4, 'str': '2'}
>>> a.__dict__.keys()
dict_keys(['multi', 'str'])
Example 3: how to get all values from class in python
>>> an = Animal()
>>> attrs = vars(an)