A Day in the Life of a Computer Programmer
As a computer programmer, my daily life is actually kind of weird. I did my undergrad in computer science and worked with Microsoft for 4...
What does // mean in python?
It’s floor division. Python docs has very nice documentation on this. Python3: Mathematical division that rounds down to nearest integer....
What programming language is famous amongst Russians?
According to Google Trends it seems like Javascript. However, I didn’t except Python as least popular language amongst Russians. First of...
What is the difference between Python 2 and Python 3?
Below are the key differences which I have observed and encountered frequently while working on Python 2 and Python 3. Integer division...
Mutable vs Immutable Objects in Python example
Everything in Python is an object and all objects in Python can be either mutable or immutable. Immutable objects: An object with a fixed...