Python is a relatively easy language to get started in where there’s … Here are 5 common Python programming mistakes most beginners find …
During the initial days as python programmer, all of us face some or other type of weird bug in our code which, after spending multiple painful hours on StackOverflow, turns out to be not a bug but python feature. That’s how things work in python. So below are the 5 most common mistakes most of the beginner python programmers make. Let’s know a bit about them so that we can save a few hours of asking questions on Facebook pages and groups.
Whenever you need to make a copy of a dictionary or list, do not simply use the assignment operator.
Wrong:
>>> dict_a = {"name": "John", "address":"221B Baker street"}
>>> dict_b = dict_a
Now if you edit/update the dict_b
, dict_a
will also be updated because by using assignment operator, you are trying to say that dict_b
will point to the same object to which dict_a
is pointing.
>>> dict_b["age"] = 26
>>> dict_b
{'address': '221B Baker street', 'name': 'John', 'age': 26}
>>> dict_a
{'address': '221B Baker street', 'name': 'John', 'age': 26}
>>>
Correct:
Use the copy()
or deepcopy()
method.
>>> dict_c = dict_b.copy()
>>> dict_c["location"] = "somewhere"
>>> dict_c
{'address': '221B Baker street', 'name': 'John', 'age': 26, 'location': 'somewhere'}
>>> dict_b
{'address': '221B Baker street', 'name': 'John', 'age': 26}
>>> dict_a
{'address': '221B Baker street', 'name': 'John', 'age': 26}
>>>
See the difference between copy and deepcopy.
Let’s say we put the below values in a dictionary.
>>> dict_a = dict()
>>> dict_a
{}
>>> dict_a[1] = "apple"
>>> dict_a[True] = "mango"
>>> dict_a[2] = "melon"
If we try to print the dictionary, what will be the output. Let’s see.
>>> dict_a
{1: 'mango', 2: 'melon'}
What just happened? where is the key True
?
Remember Boolean class is the subclass of Integer. Integer equivalent of True
is 1 and that of False
is 0. Hence the value of key 1 is overwritten.
>>> isinstance(True, int)
True
>>> isinstance(False, int)
True
>>> True == 1
True
>>> False == 0
True
>>>
Let’s say you want to append an item to the list.
>>> list_a = [1,2,3,4,5]
>>> list_a = list_a.append(6)
>>> list_a
>>> # prints nothing
Try to update a dictionary.
>>> dict_a = {"a" : "b"}
>>> dict_a = dict_a.update({"c" : "d"})
>>> dict_a
>>> # prints nothing
Ok, let’s try to sort a list.
>>> list_b = [2,5,3,1,7]
>>> list_b = list_b.sort()
>>> list_b
>>> # prints nothing
Why nothing is being printed? What are we doing wrong?
Most the sequence object methods like sort, update, append, add, etc works in place to increase performance by avoiding to create a separate copy un-necessarily.
Do not try to assign the output of such methods to the variable.
Right way:
>>> list_a = [1,2,3,4,5]
>>> list_a.append(6)
>>> dict_a = {"a" : "b"}
>>> dict_a.update({"c" : "d"})
>>> dict_a
{'c': 'd', 'a': 'b'}
>>> list_a.sort()
>>> list_a
[1, 2, 3, 4, 5, 6]
In some cases, python tries to reuse the existing immutable objects. String interning is one such case.
>>> a = "gmail"
>>> b = "gmail"
>>> a is b
True
Here we tried to create two different string objects. But when checked if both the objects are same, it returned True. This is because python didn’t create another object b
but pointed the b
to the first value “gmail”.
All strings of length 1 are interned. A string having anything except ASCII characters, digits and underscore in them are not interned.
Let’s see.
>>> a = "@gmail"
>>> b = "@gmail"
>>> a is b
False
>>>
Also, remember ==
is different than is
operator. ==
checks if values are equal or not while is
checks if both the variable are pointing to the same object.
>>> a = "@gmail"
>>> b = "@gmail"
>>> a is b
False
>>> a == b
True
>>>
So keep the above point in mind while using immutable strings or ==
or is
operator.
Consider the below example.
def func(a, lst=[]):
lst.append(a)
return lst
print(func(1))
print(func(2))
What do you think will be the output of the above two print statements?
Let’s try to run it.
>>> def func(a, lst=[]):
... lst.append(a)
... return lst
...
>>> print(func(1))
[1]
>>> print(func(2))
[1, 2]
>>>
Why the output is [1,2]
in the second case. Shouldn’t it be just [2]
?
So the catch here is, default arguments of a function are evaluated just once. On first call i.e func(1)
, list lst
is evaluated and is found empty hence 1 is appended to it. But on the second call, the list is already having one element hence output is [1,2]
#python #web-development