class test:
def __init__(self, val):
self.val = val
self.val.lower()
Why doesn't lower() operate on the contents of val in this code?
Why doesn't lower() operate on the contents of val in this code? |
|||||||||
|
|
You probably mean:
Or, more concisely:
To elaborate, |
|||
|
|
|
The documentation states it pretty clearly:
|
|||
|
|
|
It is because strings are immutable. You cannot change them in-place. Thus, you must overwrite the value of the variable like that:
Note: Unless, of course, your Example of mutable object with
Does it help? |
||||
|
|
|
In Python there are 2 types of function that leads to this kind of confusion. For example to sort a list you could do:
or
first one sorts in "a", but second sorts "a" and returns new sorted list. |
|||
|