What the f*ck Python? 😱
What the f*ck Python! 😱
Exploring and understanding Python through surprising snippets.
Translations: Chinese 中文 | Vietnamese Tiếng Việt | Spanish Español | Korean 한국어 | Russian Русский | German Deutsch | Persian فارسی | Add translation
Other modes: Interactive Website | Interactive Notebook
Python, being a beautifully designed high-level and interpreter-based programming language, provides us with many features for the programmer's comfort. But sometimes, the outcomes of a Python snippet may not seem obvious at first sight.
Here's a fun project attempting to explain what exactly is happening under the hood for some counter-intuitive snippets and lesser-known features in Python.
While some of the examples you see below may not be WTFs in the truest sense, but they'll reveal some of the interesting parts of Python that you might be unaware of. I find it a nice way to learn the internals of a programming language, and I believe that you'll find it interesting too!
If you're an experienced Python programmer, you can take it as a challenge to get most of them right in the first attempt You may have already experienced some of them before, and I might be able to revive sweet old memories of yours! :sweat_smile:
PS: If you're a returning reader, you can learn about the new modifications here (the examples marked with asterisk are the ones added in the latest major revision).
So, here we go...
Table of Contents
- ▶ Some fancy Title - Section: Strain your brain! - ▶ First things first! \* - ▶ Strings can be tricky sometimes - ▶ Be careful with chained operations - ▶ How not to useis operator
- ▶ Hash brownies
- ▶ Deep down, we're all the same.
- ▶ Disorder within order \*
- ▶ Keep trying... \*
- ▶ For what?
- ▶ Evaluation time discrepancy
- ▶ is not ... is not is (not ...)
- ▶ A tic-tac-toe where X wins in the first attempt!
- ▶ Schrödinger's variable
- ▶ The chicken-egg problem \*
- ▶ Subclass relationships
- ▶ Methods equality and identity
- ▶ All-true-ation \*
- ▶ The surprising comma
- ▶ Strings and the backslashes
- ▶ not knot!
- ▶ Half triple-quoted strings
- ▶ What's wrong with booleans?
- ▶ Class attributes and instance attributes
- ▶ yielding None
- ▶ Yielding from... return! \*
- ▶ Nan-reflexivity \*
- ▶ Mutating the immutable!
- ▶ The disappearing variable from outer scope
- ▶ The mysterious key type conversion
- ▶ Let's see if you can guess this?
- ▶ Exceeds the limit for integer string conversion
- Section: Slippery Slopes
- ▶ Modifying a dictionary while iterating over it
- ▶ Stubborn del operation
- ▶ The out of scope variable
- ▶ Deleting a list item while iterating
- ▶ Lossy zip of iterators \*
- ▶ Loop variables leaking out!
- ▶ Beware of default mutable arguments!
- ▶ Catching the Exceptions
- ▶ Same operands, different story!
- ▶ Name resolution ignoring class scope
- ▶ Rounding like a banker \*
- ▶ Needles in a Haystack \*
- ▶ Splitsies \*
- ▶ Wild imports \*
- ▶ All sorted? \*
- ▶ Midnight time doesn't exist?
- Section: The Hidden treasures!
- ▶ Okay Python, Can you make me fly?
- ▶ goto, but why?
- ▶ Brace yourself!
- ▶ Let's meet Friendly Language Uncle For Life
- ▶ Even Python understands that love is complicated
- ▶ Yes, it exists!
- ▶ Ellipsis \*
- ▶ Inpinity
- ▶ Let's mangle
- Section: Appearances are deceptive!
- ▶ Skipping lines?
- ▶ Teleportation
- ▶ Well, something is fishy...
- Section: Miscellaneous
- ▶ += is faster
- ▶ Let's make a giant string!
- ▶ Slowing down dict lookups \*
- ▶ Bloating instance dicts \*
- ▶ Minor Ones \*
- Surprise your friends as well!
- More content like this?
Structure of the Examples
All the examples are structured like below:
## Section: (if necessary)>
### ▶ Some fancy Title>
> # Preparation for the magic... > >> # Set up the code.
Output (Python version(s)):>
> Some unexpected output > >> >>> triggering_statement
(Optional): One line describing the unexpected output.>
#### 💡 Explanation:>
- Brief explanation of what's happening and why is it happening.>
> # More examples for further clarification (if necessary) > >> # Set up code
Output (Python version(s)):>
> # some justified output >> >>> trigger # some example that makes it easy to unveil the magic
Note: All the examples are tested on Python 3.5.2 interactive interpreter, and they should work for all the Python versions unless explicitly specified before the output.
Usage
A nice way to get the most out of these examples, in my opinion, is to read them in sequential order, and for every example:
- Carefully read the initial code for setting up the example.
- Read the output snippets and,
👀 Examples
Section: Strain your brain!
▶ First things first! \*
For some reason, the Python 3.8's "Walrus" operator (:=) has become quite popular. Let's check it out,
1\.
# Python version 3.8+
>>> a = "wtf_walrus" >>> a 'wtf_walrus'
>>> a := "wtf_walrus" File "<stdin>", line 1 a := "wtf_walrus" ^ SyntaxError: invalid syntax
>>> (a := "wtf_walrus") # This works though 'wtf_walrus' >>> a 'wtf_walrus'
2 \.
# Python version 3.8+
>>> a = 6, 9 >>> a (6, 9)
>>> (a := 6, 9) (6, 9) >>> a 6
>>> a, b = 6, 9 # Typical unpacking >>> a, b (6, 9) >>> (a, b = 16, 19) # Oops File "<stdin>", line 1 (a, b = 16, 19) ^ SyntaxError: invalid syntax
>>> (a, b := 16, 19) # This prints out a weird 3-tuple (6, 16, 19)
>>> a # a is still unchanged? 6
>>> b 16
💡 Explanation
The Walrus operator (:=) was introduced in Python 3.8, it can be useful in situations where you'd want to assign values to variables within an expression.
def some_func():
# Assume some expensive computation here
# time.sleep(1000)
return 5
So instead of,
if some_func():
print(some_func()) # Which is bad practice since computation is happening twice
or
a = some_func()
if a:
print(a)
Now you can concisely write
if a := some_func():
print(a)
Output (> 3.8):
5
5
5
This saved one line of code, and implicitly prevented invoking some_func twice.
- Unparenthesized "assignment expression" (use of walrus operator), is restricted at the top level,
SyntaxError in the a := "wtf_walrus" statement of the first snippet.
Parenthesizing it worked as expected and assigned a.
- As usual, parenthesizing of an expression containing
=operator is not allowed.
(a, b = 6, 9).
- The syntax of the Walrus operator is of the form
NAME:= expr, whereNAMEis a valid identifier,
expr is a valid expression. Hence, iterable packing and unpacking are not supported which means,
- (a := 6, 9) is equivalent to ((a := 6), 9) and ultimately (a, 9) (where a's value is 6')
>>> (a := 6, 9) == ((a := 6), 9)
True
>>> x = (a := 696, 9)
>>> x
(696, 9)
>>> x[0] is a # Both reference same memory location
True
- Similarly, (a, b := 16, 19) is equivalent to (a, (b := 16), 19) which is nothing but a 3-tuple.
▶ Strings can be tricky sometimes
1\. Notice that both the ids are same.
:snippets/2trickystrings.py -s 2 -e 3
assert id("somestring") == id("some" + "" + "string")
assert id("somestring") == id("somestring")
2\. True because it is invoked in script. Might be False in python shell or ipython
:snippets/2trickystrings.py -s 6 -e 12
a = "wtf"
b = "wtf"
assert a is b
a = "wtf!" b = "wtf!" assert a is b
3\. True because it is invoked in script. Might be False in python shell or ipython
:snippets/2trickystrings.py -s 15 -e 19
a, b = "wtf!", "wtf!"
assert a is b
a = "wtf!"; b = "wtf!" assert a is b
4\. Disclaimer - snippet is not relevant in modern Python versions
Output (< Python3.7 )
>>> 'a' * 20 is 'aaaaaaaaaaaaaaaaaaaa'
True
>>> 'a' * 21 is 'aaaaaaaaaaaaaaaaaaaaa'
False
Makes sense, right?
💡 Explanation:
- The behavior in first and second snippets is due to a CPython optimization (called string interning)
- After being "interned," many variables may reference the same string object in memory (saving memory thereby).
- In the snippets above, strings are implicitly interned. The decision of when to implicitly intern a string is
'wtf' will be interned but ''.join(['w', 't', 'f']) will not be interned)
- Strings that are not composed of ASCII letters, digits or underscores, are not interned.
This explains why 'wtf!' was not interned due to !. CPython implementation of this rule can be found here
- When
aandbare set to"wtf!"in the same line, the Python interpreter creates a new object,
"wtf!" as an object (because "wtf!" is not implicitly interned as per the facts mentioned above).
It's a compile-time optimization. This optimization doesn't apply to 3.7.x versions of CPython
(check this issue for more discussion).
- A compile unit in an interactive environment like IPython consists of a single statement,
a, b = "wtf!", "wtf!" is single statement,
whereas a = "wtf!"; b = "wtf!" are two statements in a single line.
This explains why the identities are different in a = "wtf!"; b = "wtf!",
and also explain why they are same when invoked in some_file.py
- The abrupt change in the output of the fourth snippet is due to a
'a'*20 is replaced by 'aaaaaaaaaaaaaaaaaaaa' during compilation to save
a few clock cycles during runtime. Constant folding only occurs for strings having a length of less than 21.
(Why? Imagine the size of .pyc file generated as a result of the expression 'a'10*10).
Here's the implementation source for the same.
- Note: In Python 3.7, Constant folding was moved out from peephole optimizer to the new AST optimizer
▶ Be careful with chained operations
>>> (False == False) in [False] # makes sense
False
>>> False == (False in [False]) # makes sense
False
>>> False == False in [False] # now what?
True
>>> True is False == False False >>> False is False is False True
>>> 1 > 0 < 1 True >>> (1 > 0) < 1 False >>> 1 > (0 < 1) False
💡 Explanation:
As per https://docs.python.org/3/reference/expressions.html#comparisons
Formally, if a, b, c, ..., y, z are expressions and op1, op2, ..., opN are comparison operators,then a op1 b op2 c ... y opN z is equivalent to a op1 b and b op2 c and ... y opN z, except that each expression is evaluated at most once.
While such behavior might seem silly to you in the above examples, it's fantastic with stuff like a == b == c and 0 <= x <= 100.
False is False is Falseis equivalent to(False is False) and (False is False)True is False == Falseis equivalent to(True is False) and (False == False)
True is False) evaluates to False, the overall expression evaluates to False.
1 > 0 < 1is equivalent to(1 > 0) and (0 < 1)which evaluates toTrue.- The expression
(1 > 0) < 1is equivalent toTrue < 1and
>>> int(True)
1
>>> True + 1 # not relevant for this example, but just for fun
2
So, 1 < 1 evaluates to False
▶ How not to use is operator
The following is a very famous example present all over the internet.
1\.
>>> a = 256
>>> b = 256
>>> a is b
True
>>> a = 257 >>> b = 257 >>> a is b False
2\.
>>> a = []
>>> b = []
>>> a is b
False
>>> a = tuple() >>> b = tuple() >>> a is b True
3\. Output
>>> a, b = 257, 257
>>> a is b
True
Output (Python 3.7.x specifically)
>>> a, b = 257, 257
>>> a is b
False
💡 Explanation:
The difference between is and ==
isoperator checks if both the operands refer to the same object (i.e., it checks if the identity of the operands matches or not).==operator compares the values of both the operands and checks if they are the same.- So
isis for reference equality and==is for value equality. An example to clear things up,
>>> class A: pass
>>> A() is A() # These are two empty objects at two different memory locations.
False
256 is an existing object but 257 isn't
When you start up python the numbers from -5 to 256 will be allocated. These numbers are used a lot, so it makes sense just to have them ready.
Quoting from https://docs.python.org/3/c-api/long.html
The current implementation keeps an array of integer objects for all integers between -5 and 256, when you create an int in that range you just get back a reference to the existing object. So it should be possible to change the value of 1. I suspect the behavior of Python, in this case, is undefined. :-)
>>> id(256)
10922528
>>> a = 256
>>> b = 256
>>> id(a)
10922528
>>> id(b)
10922528
>>> id(257)
140084850247312
>>> x = 257
>>> y = 257
>>> id(x)
140084850247440
>>> id(y)
140084850247344
Here the interpreter isn't smart enough while executing y = 257 to recognize that we've already created an integer of the value 257, and so it goes on to create another object in the memory.
Similar optimization applies to other immutable objects like empty tuples as well. Since lists are mutable, that's why [] is [] will return False and () is () will return True. This explains our second snippet. Let's move on to the third one,
Both a and b refer to the same object when initialized with same value in the same line.
Output
>>> a, b = 257, 257
>>> id(a)
140640774013296
>>> id(b)
140640774013296
>>> a = 257
>>> b = 257
>>> id(a)
140640774013392
>>> id(b)
140640774013488
- When a and b are set to
257in the same line, the Python interpreter creates a new object, then references the second variable at the same time. If you do it on separate lines, it doesn't "know" that there's already257as an object.
- It's a compiler optimization and specifically applies to the interactive environment. When you enter two lines in a live interpreter, they're compiled separately, therefore optimized separately. If you were to try this example in a
.pyfile, you would not see the same behavior, because the file is compiled all at once. This optimization is not limited to integers, it works for other immutable data types like strings (check the "Strings are tricky example") and floats as well,
>>> a, b = 257.0, 257.0
>>> a is b
True
- Why didn't this work for Python 3.7? The abstract reason is because such compiler optimizations are implementation specific (i.e. may change with version, OS, etc). I'm still figuring out what exact implementation change cause the issue, you can check out this issue for updates.
▶ Hash brownies
1\.
some_dict = {}
some_dict[5.5] = "JavaScript"
some_dict[5.0] = "Ruby"
some_dict[5] = "Python"
Output:
>>> some_dict[5.5]
"JavaScript"
>>> some_dict[5.0] # "Python" destroyed the existence of "Ruby"?
"Python"
>>> some_dict[5]
"Python"
>>> complex_five = 5 + 0j >>> type(complex_five) complex >>> somedict[complexfive] "Python"
So, why is Python all over the place?
💡 Explanation
- Uniqueness of keys in a Python dictionary is by equivalence, not identity. So even though
5,5.0, and5 + 0jare distinct objects of different types, since they're equal, they can't both be in the samedict(orset). As soon as you insert any one of them, attempting to look up any distinct but equivalent key will succeed with the original mapped value (rather than failing with aKeyError):
>>> 5 == 5.0 == 5 + 0j
True
>>> 5 is not 5.0 is not 5 + 0j
True
>>> some_dict = {}
>>> some_dict[5.0] = "Ruby"
>>> 5.0 in some_dict
True
>>> (5 in somedict) and (5 + 0j in somedict)
True
- This applies when setting an item as well. So when you do
some_dict[5] = "Python", Python finds the existing item with equivalent key5.0 -> "Ruby", overwrites its value in place, and leaves the original key alone.
>>> some_dict
{5.0: 'Ruby'}
>>> some_dict[5] = "Python"
>>> some_dict
{5.0: 'Python'}
- So how can we update the key to
5(instead of5.0)? We can't actually do this update in place, but what we can do is first delete the key (del somedict[5.0]), and then set it (somedict[5]) to get the integer5as the key instead of floating5.0, though this should be needed in rare cases.
- How did Python find
5in a dictionary containing5.0? Python does this in constant time without having to scan through every item by using hash functions. When Python looks up a keyfooin a dict, it first computeshash(foo)(which runs in constant-time). Since in Python it is required that objects that compare equal also have the same hash value (docs here),5,5.0, and5 + 0jhave the same hash value.
>>> 5 == 5.0 == 5 + 0j
True
>>> hash(5) == hash(5.0) == hash(5 + 0j)
True
Note: The inverse is not necessarily true: Objects with equal hash values may themselves be unequal. (This causes what's known as a hash collision>), and degrades the constant-time performance that hashing usually provides.)
▶ Deep down, we're all the same.
class WTF:
pass
Output:
>>> WTF() == WTF() # two different instances can't be equal
False
>>> WTF() is WTF() # identities are also different
False
>>> hash(WTF()) == hash(WTF()) # hashes should be different as well
True
>>> id(WTF()) == id(WTF())
True
💡 Explanation:
- When
idwas called, Python created aWTFclass object and passed it to theidfunction. Theidfunction takes itsid(its memory location), and throws away the object. The object is destroyed. - When we do this twice in succession, Python allocates the same memory location to this second object as well. Since (in CPython)
iduses the memory location as the object id, the id of the two objects is the same. - So, the object's id is unique only for the lifetime of the object. After the object is destroyed, or before it is created, something else can have the same id.
- But why did the
isoperator evaluate toFalse? Let's see with this snippet.
class WTF(object):
def init(self): print("I")
def del(self): print("D")
Output:
>>> WTF() is WTF()
I
I
D
D
False
>>> id(WTF()) == id(WTF())
I
D
I
D
True
As you may observe, the order in which the objects are destroyed is what made all the difference here.
▶ Disorder within order \*
from collections import OrderedDict
dictionary = dict() dictionary[1] = 'a'; dictionary[2] = 'b';
ordered_dict = OrderedDict() ordereddict[1] = 'a'; ordereddict[2] = 'b';
anotherordereddict = OrderedDict() anotherordereddict[2] = 'b'; anotherordereddict[1] = 'a';
class DictWithHash(dict): """ A dict that also implements hash magic. """ hash = lambda self: 0
class OrderedDictWithHash(OrderedDict): """ An OrderedDict that also implements hash magic. """ hash = lambda self: 0
Output
>>> dictionary == ordered_dict # If a == b
True
>>> dictionary == anotherordereddict # and b == c
True
>>> ordereddict == anotherordered_dict # then why isn't c == a ??
False
We all know that a set consists of only unique elements,
let's try making a set of these dictionaries and see what happens...
>>> len({dictionary, ordereddict, anotherordered_dict}) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: unhashable type: 'dict'
Makes sense since dict don't have hash implemented, let's use
our wrapper classes.
>>> dictionary = DictWithHash()
>>> dictionary[1] = 'a'; dictionary[2] = 'b';
>>> ordered_dict = OrderedDictWithHash()
>>> ordereddict[1] = 'a'; ordereddict[2] = 'b';
>>> anotherordereddict = OrderedDictWithHash()
>>> anotherordereddict[2] = 'b'; anotherordereddict[1] = 'a';
>>> len({dictionary, ordereddict, anotherordered_dict})
1
>>> len({ordereddict, anotherordered_dict, dictionary}) # changing the order
2
What is going on here?
💡 Explanation:
- The reason why intransitive equality didn't hold among
dictionary,ordereddictandanotherordereddictis because of the wayeqmethod is implemented inOrderedDictclass. From the docs
list(od1.items())==list(od2.items()). Equality tests between OrderedDict objects and other Mapping objects are order-insensitive like regular dictionaries.
- The reason for this equality in behavior is that it allows
OrderedDictobjects to be directly substituted anywhere a regular dictionary is used. - Okay, so why did changing the order affect the length of the generated
setobject? The answer is the lack of intransitive equality only. Since sets are "unordered" collections of unique elements, the order in which elements are inserted shouldn't matter. But in this case, it does matter. Let's break it down a bit,
>>> some_set = set()
>>> some_set.add(dictionary) # these are the mapping objects from the snippets above
>>> ordereddict in someset
True
>>> someset.add(ordereddict)
>>> len(some_set)
1
>>> anotherordereddict in some_set
True
>>> someset.add(anotherordered_dict)
>>> len(some_set)
1
>>> another_set = set() >>> anotherset.add(ordereddict) >>> anotherordereddict in another_set False >>> anotherset.add(anotherordered_dict) >>> len(another_set) 2 >>> dictionary in another_set True >>> anotherset.add(anotherordered_dict) >>> len(another_set) 2
So the inconsistency is due to anotherordereddict in anotherset being False because ordereddict was already present in anotherset and as observed before, ordereddict == anotherordereddict is False.
▶ Keep trying... \*
def some_func():
try:
return 'from_try'
finally:
return 'from_finally'
def another_func(): for _ in range(3): try: continue finally: print("Finally!")
def onemorefunc(): # A gotcha! try: for i in range(3): try: 1 / i except ZeroDivisionError: # Let's throw it here and handle it outside for loop raise ZeroDivisionError("A trivial divide by zero error") finally: print("Iteration", i) break except ZeroDivisionError as e: print("Zero division error occurred", e)
Output:
>>> some_func()
'from_finally'
>>> another_func() Finally! Finally! Finally!
>>> 1 / 0 Traceback (most recent call last): File "<stdin>", line 1, in <module> ZeroDivisionError: division by zero
>>> onemorefunc() Iteration 0
💡 Explanation:
- When a
return,breakorcontinuestatement is executed in thetrysuite of a "try…finally" statement, thefinallyclause is also executed on the way out. - The return value of a function is determined by the last
returnstatement executed. Since thefinallyclause always executes, areturnstatement executed in thefinallyclause will always be the last one executed. - The caveat here is, if the finally clause executes a
returnorbreakstatement, the temporarily saved exception is discarded.
▶ For what?
some_string = "wtf"
some_dict = {}
for i, somedict[i] in enumerate(somestring):
i = 10
Output:
>>> some_dict # An indexed dict appears.
{0: 'w', 1: 't', 2: 'f'}
💡 Explanation:
- A
forstatement is defined in the Python grammar as:
for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite]
Where exprlist is the assignment target. This means that the equivalent of {exprlist} = {next_value} is executed for each item in the iterable. An interesting example that illustrates this:
for i in range(4):
print(i)
i = 10
Output:
0
1
2
3
Did you expect the loop to run just once?
💡 Explanation:
- The assignment statement i = 10 never affects the iterations of the loop because of the way for loops work in Python. Before the beginning of every iteration, the next item provided by the iterator (range(4) in this case) is unpacked and assigned the target list variables (i in this case).
- The
enumerate(somestring)function yields a new valuei(a counter going up) and a character from thesomestringin each iteration. It then sets the (just assigned)ikey of the dictionarysome_dictto that character. The unrolling of the loop can be simplified as:
>>> i, some_dict[i] = (0, 'w')
>>> i, some_dict[i] = (1, 't')
>>> i, some_dict[i] = (2, 'f')
>>> some_dict
▶ Evaluation time discrepancy
1\.
array = [1, 8, 15]
A typical generator expression
gen = (x for x in array if array.count(x) > 0)
array = [2, 8, 22]
Output:
>>> print(list(gen)) # Where did the other values go?
[8]
2\.
array_1 = [1,2,3,4]
gen1 = (x for x in array1)
array_1 = [1,2,3,4,5]
array_2 = [1,2,3,4] gen2 = (x for x in array2) array_2[:] = [1,2,3,4,5]
Output:
>>> print(list(gen_1))
[1, 2, 3, 4]
>>> print(list(gen_2)) [1, 2, 3, 4, 5]
3\.
array_3 = [1, 2, 3]
array_4 = [10, 20, 30]
gen = (i + j for i in array3 for j in array4)
array_3 = [4, 5, 6] array_4 = [400, 500, 600]
Output:
>>> print(list(gen))
[401, 501, 601, 402, 502, 602, 403, 503, 603]
💡 Explanation
- In a generator expression, the
inclause is evaluated at declaration time, but the conditional clause is evaluated at runtime. - So before runtime,
arrayis re-assigned to the list[2, 8, 22], and since out of1,8and15, only the count of8is greater than0, the generator only yields8. - The differences in the output of
g1andg2in the second part is due the way variablesarray1andarray2are re-assigned values. - In the first case,
array_1is bound to the new object[1,2,3,4,5]and since theinclause is evaluated at the declaration time it still refers to the old object[1,2,3,4](which is not destroyed). - In the second case, the slice assignment to
array2updates the same old object[1,2,3,4]to[1,2,3,4,5]. Hence both theg2andarray2still have reference to the same object (which has now been updated to[1,2,3,4,5]). - Okay, going by the logic discussed so far, shouldn't be the value of
list(gen)in the third snippet be[11, 21, 31, 12, 22, 32, 13, 23, 33]? (becausearray3andarray4are going to behave just likearray1). The reason why (only)array4values got updated is explained in PEP-289
▶ is not ... is not is (not ...)
>>> 'something' is not None
True
>>> 'something' is (not None)
False
💡 Explanation
is notis a single binary operator, and has behavior different than usingisandnotseparated.is notevaluates toFalseif the variables on either side of the operator point to the same object andTrueotherwise.- In the example,
(not None)evaluates toTruesince the valueNoneisFalsein a boolean context, so the expression becomes'something' is True.
▶ A tic-tac-toe where X wins in the first attempt!
# Let's initialize a row
row = [""] * 3 #row i['', '', '']
Let's make a board
board = [row] * 3
Output:
>>> board
[['', '', ''], ['', '', ''], ['', '', '']]
>>> board[0]
['', '', '']
>>> board[0][0]
''
>>> board[0][0] = "X"
>>> board
[['X', '', ''], ['X', '', ''], ['X', '', '']]
We didn't assign three "X"s, did we?
💡 Explanation:
When we initialize row variable, this visualization explains what happens in the memory
And when the board is initialized by multiplying the row, this is what happens inside the memory (each of the elements board[0], board[1] and board[2] is a reference to the same list referred by row)
We can avoid this scenario here by not using row variable to generate board. (Asked in this issue).
>>> board = [['']*3 for _ in range(3)]
>>> board[0][0] = "X"
>>> board
[['X', '', ''], ['', '', ''], ['', '', '']]
▶ Schrödinger's variable \*
funcs = []
results = []
for x in range(7):
def some_func():
return x
funcs.append(some_func)
results.append(some_func()) # note the function call here
funcs_results = [func() for func in funcs]
Output (Python version):
>>> results
[0, 1, 2, 3, 4, 5, 6]
>>> funcs_results
[6, 6, 6, 6, 6, 6, 6]
The values of x were different in every iteration prior to appending some_func to funcs, but all the functions return 6 when they're evaluated after the loop completes.
2.
>>> powersofx = [lambda x: x**i for i in range(10)]
>>> [f(2) for f in powersofx]
[512, 512, 512, 512, 512, 512, 512, 512, 512, 512]
💡 Explanation:
- When defining a function inside a loop that uses the loop variable in its body,
x in the surrounding context, rather than using the value of x at the time
the function is created. So all of the functions use the latest value assigned to the variable for computation.
We can see that it's using the x from the surrounding context (i.e. not a local variable) with:
>>> import inspect
>>> inspect.getclosurevars(funcs[0])
ClosureVars(nonlocals={}, globals={'x': 6}, builtins={}, unbound=set())
Since x is a global value, we can change the value that the funcs will lookup and return by updating x:
>>> x = 42
>>> [func() for func in funcs]
[42, 42, 42, 42, 42, 42, 42]
- To get the desired behavior you can pass in the loop variable as a named variable to the function. Why does this work? Because this will define the variable inside the function's scope. It will no longer go to the surrounding (global) scope to look up the variables value but will create a local variable that stores the value of
xat that point in time.
funcs = []
for x in range(7):
def some_func(x=x):
return x
funcs.append(some_func)
Output:
>>> funcs_results = [func() for func in funcs]
>>> funcs_results
[0, 1, 2, 3, 4, 5, 6]
It is not longer using the x in the global scope:
>>> inspect.getclosurevars(funcs[0])
ClosureVars(nonlocals={}, globals={}, builtins={}, unbound=set())
▶ The chicken-egg problem \*
1\.
>>> isinstance(3, int)
True
>>> isinstance(type, object)
True
>>> isinstance(object, type)
True
So which is the "ultimate" base class? There's more to the confusion by the way,
2\.
>>> class A: pass
>>> isinstance(A, A)
False
>>> isinstance(type, type)
True
>>> isinstance(object, object)
True
3\.
>>> issubclass(int, object)
True
>>> issubclass(type, object)
True
>>> issubclass(object, type)
False
💡 Explanation
typeis a metaclass in Python.- Everything is an
objectin Python, which includes classes as well as their objects (instances). - class
typeis the metaclass of classobject, and every class (includingtype) has inherited directly or indirectly fromobject. - There is no real base class among
objectandtype. The confusion in the above snippets is arising because we're thinking about these relationships (issubclassandisinstance) in terms of Python classes. The relationship betweenobjectandtypecan't be reproduced in pure python. To be more precise the following relationships can't be reproduced in pure Python,
- These relationships between
objectandtype(both being instances of each other as well as themselves) exist in Python because of "cheating" at the implementation level.
▶ Subclass relationships
Output:
>>> from collections.abc import Hashable
>>> issubclass(list, object)
True
>>> issubclass(object, Hashable)
True
>>> issubclass(list, Hashable)
False
The Subclass relationships were expected to be transitive, right? (i.e., if A is a subclass of B, and B is a subclass of C, the A should a subclass of C)
💡 Explanation:
- Subclass relationships are not necessarily transitive in Python. Anyone is allowed to define their own, arbitrary
subclasscheckin a metaclass. - When
issubclass(cls, Hashable)is called, it simply looks for non-Falsey "hash" method inclsor anything it inherits from. - Since
objectis hashable, butlistis non-hashable, it breaks the transitivity relation. - More detailed explanation can be found here.
▶ Methods equality and identity
1.
class SomeClass:
def method(self):
pass
@classmethod def classm(cls): pass
@staticmethod def staticm(): pass
Output:
>>> print(SomeClass.method is SomeClass.method)
True
>>> print(SomeClass.classm is SomeClass.classm)
False
>>> print(SomeClass.classm == SomeClass.classm)
True
>>> print(SomeClass.staticm is SomeClass.staticm)
True
Accessing classm twice, we get an equal object, but not the same one? Let's see what happens with instances of SomeClass:
2.
o1 = SomeClass()
o2 = SomeClass()
Output:
>>> print(o1.method == o2.method)
False
>>> print(o1.method == o1.method)
True
>>> print(o1.method is o1.method)
False
>>> print(o1.classm is o1.classm)
False
>>> print(o1.classm == o1.classm == o2.classm == SomeClass.classm)
True
>>> print(o1.staticm is o1.staticm is o2.staticm is SomeClass.staticm)
True
Accessing classm or method twice, creates equal but not same objects for the same instance of SomeClass.
💡 Explanation
- Functions are descriptors. Whenever a function is accessed as an
self as the first argument, despite not passing it explicitly).
>>> o1.method
<bound method SomeClass.method of <main.SomeClass object at ...>>
- Accessing the attribute multiple times creates a method object every time! Therefore
o1.method is o1.methodis
SomeClass.method is SomeClass.method is truthy.
>>> SomeClass.method
<function SomeClass.method at ...>
classmethodtransforms functions into class methods. Class methods are descriptors that, when accessed, create
>>> o1.classm
<bound method SomeClass.classm of <class 'main.SomeClass'>>
- Unlike functions,
classmethods will create a method also when accessed as class attributes (in which case they
SomeClass.classm is SomeClass.classm is falsy.
>>> SomeClass.classm
<bound method SomeClass.classm of <class 'main.SomeClass'>>
- A method object compares equal when both the functions are equal, and the bound objects are the same. So
o1.method == o1.method is truthy, although not the same object in memory.
staticmethodtransforms functions into a "no-op" descriptor, which returns the function as-is. No method
is is truthy.
>>> o1.staticm
<function SomeClass.staticm at ...>
>>> SomeClass.staticm
<function SomeClass.staticm at ...>
- Having to create new "method" objects every time Python calls instance methods and having to modify the arguments
self affected performance badly.
CPython 3.7 solved it by introducing new opcodes that deal with calling methods
without creating the temporary method objects. This is used only when the accessed function is actually called, so the
snippets here are not affected, and still generate methods :)
▶ All-true-ation \*
>>> all([True, True, True])
True
>>> all([True, True, False])
False
>>> all([]) True >>> all([[]]) False >>> all([[[]]]) True
Why's this True-False alteration?
💡 Explanation:
- The implementation of
allfunction is equivalent to
def all(iterable):
all([])returnsTruesince the iterable is empty.all([[]])returnsFalsebecause the passed array has one element,[], and in python, an empty list is falsy.all([[[]]])and higher recursive variants are alwaysTrue. This is because the passed array's single element ([[...]]) is no longer empty, and lists with values are truthy.
▶ The surprising comma
Output (< 3.6):
>>> def f(x, y,):
... print(x, y)
...
>>> def g(x=4, y=5,):
... print(x, y)
...
>>> def h(x, **kwargs,):
File "<stdin>", line 1
def h(x, **kwargs,):
^
SyntaxError: invalid syntax
>>> def h(*args,): File "<stdin>", line 1 def h(*args,): ^ SyntaxError: invalid syntax
💡 Explanation:
- Trailing comma is not always legal in formal parameters list of a Python function.
- In Python, the argument list is defined partially with leading commas and partially with trailing commas. This conflict causes situations where a comma is trapped in the middle, and no rule accepts it.
- Note: The trailing comma problem is fixed in Python 3.6. The remarks in this post discuss in brief different usages of trailing commas in Python.
▶ Strings and the backslashes
Output:
>>> print("\"")
"
>>> print(r"\"") \"
>>> print(r"\") File "<stdin>", line 1 print(r"\") ^ SyntaxError: EOL while scanning string literal
>>> r'\'' == "\\'" True
💡 Explanation
- In a usual python string, the backslash is used to escape characters that may have a special meaning (like single-quote, double-quote, and the backslash itself).
>>> "wt\"f"
'wt"f'
- In a raw string literal (as indicated by the prefix
r), the backslashes pass themselves as is along with the behavior of escaping the following character.
>>> r'wt\"f' == 'wt\\"f'
True
>>> print(repr(r'wt\"f'))
'wt\\"f'
>>> print("\n")
>>> print(r"\\n") '\\n'
- This means when a parser encounters a backslash in a raw string, it expects another character following it. And in our case (
print(r"\")), the backslash escaped the trailing quote, leaving the parser without a terminating quote (hence theSyntaxError). That's why backslashes don't work at the end of a raw string.
▶ not knot!
x = True
y = False
Output:
>>> not x == y
True
>>> x == not y
File "<input>", line 1
x == not y
^
SyntaxError: invalid syntax
💡 Explanation:
- Operator precedence affects how an expression is evaluated, and
==operator has higher precedence thannotoperator in Python. - So
not x == yis equivalent tonot (x == y)which is equivalent tonot (True == False)finally evaluating toTrue. - But
x == not yraises aSyntaxErrorbecause it can be thought of being equivalent to(x == not) yand notx == (not y)which you might have expected at first sight. - The parser expected the
nottoken to be a part of thenot inoperator (because both==andnot inoperators have the same precedence), but after not being able to find anintoken following thenottoken, it raises aSyntaxError.
▶ Half triple-quoted strings
Output:
>>> print('wtfpython''')
wtfpython
>>> print("wtfpython""")
wtfpython
>>> # The following statements raise SyntaxError
>>> # print('''wtfpython')
>>> # print("""wtfpython")
File "<input>", line 3
print("""wtfpython")
^
SyntaxError: EOF while scanning triple-quoted string literal
💡 Explanation:
- Python supports implicit string literal concatenation, Example,
>>> print("wtf" "python")
wtfpython
>>> print("wtf" "") # or "wtf"""
wtf
'''and"""are also string delimiters in Python which causes a SyntaxError because the Python interpreter was expecting a terminating triple quote as delimiter while scanning the currently encountered triple quoted string literal.
▶ What's wrong with booleans?
1\.
# A simple example to count the number of booleans and
integers in an iterable of mixed data types.
mixedlist = [False, 1.0, "somestring", 3, True, [], False]
integersfoundso_far = 0
booleansfoundso_far = 0
for item in mixed_list: if isinstance(item, int): integersfoundso_far += 1 elif isinstance(item, bool): booleansfoundso_far += 1
Output:
>>> integersfoundso_far
4
>>> booleansfoundso_far
0
2\.
>>> some_bool = True
>>> "wtf" * some_bool
'wtf'
>>> some_bool = False
>>> "wtf" * some_bool
''
3\.
def tell_truth():
True = False
if True == False:
print("I have lost faith in truth!")
Output (< 3.x):
>>> tell_truth()
I have lost faith in truth!
💡 Explanation:
boolis a subclass ofintin Python
>>> issubclass(bool, int)
True
>>> issubclass(int, bool)
False
- And thus,
TrueandFalseare instances ofint
>>> isinstance(True, int)
True
>>> isinstance(False, int)
True
- The integer value of
Trueis1and that ofFalseis0.
>>> int(True)
1
>>> int(False)
0
- See this StackOverflow answer for the rationale behind it.
- Initially, Python used to have no
booltype (people used 0 for false and non-zero value like 1 for true).True,False, and abooltype was added in 2.x versions, but, for backward compatibility,TrueandFalsecouldn't be made constants. They just were built-in variables, and it was possible to reassign them
- Python 3 was backward-incompatible, the issue was finally fixed, and thus the last snippet won't work with Python 3.x!
▶ Class attributes and instance attributes
1\.
class A:
x = 1
class B(A): pass
class C(A): pass
Output:
>>> A.x, B.x, C.x
(1, 1, 1)
>>> B.x = 2
>>> A.x, B.x, C.x
(1, 2, 1)
>>> A.x = 3
>>> A.x, B.x, C.x # C.x changed, but B.x didn't
(3, 2, 3)
>>> a = A()
>>> a.x, A.x
(3, 3)
>>> a.x += 1
>>> a.x, A.x
(4, 3)
2\.
class SomeClass:
some_var = 15
some_list = [5]
another_list = [5]
def init(self, x):
self.some_var = x + 1
self.somelist = self.somelist + [x]
self.another_list += [x]
Output:
>>> some_obj = SomeClass(420)
>>> someobj.somelist
[5, 420]
>>> someobj.anotherlist
[5, 420]
>>> another_obj = SomeClass(111)
>>> anotherobj.somelist
[5, 111]
>>> anotherobj.anotherlist
[5, 420, 111]
>>> anotherobj.anotherlist is SomeClass.another_list
True
>>> anotherobj.anotherlist is someobj.anotherlist
True
💡 Explanation:
- Class variables and variables in class instances are internally handled as dictionaries of a class object. If a variable name is not found in the dictionary of the current class, the parent classes are searched for it.
- The
+=operator modifies the mutable object in-place without creating a new object. So changing the attribute of one instance affects the other instances and the class attribute as well.
▶ yielding None
some_iterable = ('a', 'b')
def some_func(val): return "something"
Output (<= 3.7.x):
>>> [x for x in some_iterable]
['a', 'b']
>>> [(yield x) for x in some_iterable]
<generator object <listcomp> at 0x7f70b0a4ad58>
>>> list([(yield x) for x in some_iterable])
['a', 'b']
>>> list((yield x) for x in some_iterable)
['a', None, 'b', None]
>>> list(somefunc((yield x)) for x in someiterable)
['a', 'something', 'b', 'something']
💡 Explanation:
- This is a bug in CPython's handling of
yieldin generators and comprehensions. - Source and explanation can be found here: https://stackoverflow.com/questions/32139885/yield-in-list-comprehensions-and-generator-expressions
- Related bug report: https://bugs.python.org/issue10544
- Python 3.8+ no longer allows
yieldinside list comprehension and will throw aSyntaxError.
▶ Yielding from... return! \*
1\.
def some_func(x):
if x == 3:
return ["wtf"]
else:
yield from range(x)
Output (> 3.3):
>>> list(some_func(3))
[]
Where did the "wtf" go? Is it due to some special effect of yield from? Let's validate that,
2\.
def some_func(x):
if x == 3:
return ["wtf"]
else:
for i in range(x):
yield i
Output:
>>> list(some_func(3))
[]
The same result, this didn't work either.
💡 Explanation:
- From Python 3.3 onwards, it became possible to use
returnstatement with values inside generators (See PEP380). The official docs say that,
"...return exprin a generator causesStopIteration(expr)to be raised upon exit from the generator."
- In the case of
some_func(3),StopIterationis raised at the beginning because ofreturnstatement. TheStopIterationexception is automatically caught inside thelist(...)wrapper and theforloop. Therefore, the above two snippets result in an empty list.
- To get
["wtf"]from the generatorsome_funcwe need to catch theStopIterationexception,
try:
next(some_func(3))
except StopIteration as e:
some_string = e.value
>>> some_string
["wtf"]
▶ Nan-reflexivity \*
1\.
a = float('inf')
b = float('nan')
c = float('-iNf') # These strings are case-insensitive
d = float('nan')
Output:
>>> a
inf
>>> b
nan
>>> c
-inf
>>> float('someotherstring')
ValueError: could not convert string to float: someotherstring
>>> a == -c # inf==inf
True
>>> None == None # None == None
True
>>> b == d # but nan!=nan
False
>>> 50 / a
0.0
>>> a / a
nan
>>> 23 + b
nan
2\.
>>> x = float('nan')
>>> y = x / x
>>> y is y # identity holds
True
>>> y == y # equality fails of y
False
>>> [y] == [y] # but the equality succeeds for the list containing y
True
💡 Explanation:
'inf'and'nan'are special strings (case-insensitive), which, when explicitly typecast-ed tofloattype, are used to represent mathematical "infinity" and "not a number" respectively.
- Since according to IEEE standards
NaN != NaN, obeying this rule breaks the reflexivity assumption of a collection element in Python i.e. ifxis a part of a collection likelist, the implementations like comparison are based on the assumption thatx == x. Because of this assumption, the identity is compared first (since it's faster) while comparing two elements, and the values are compared only when the identities mismatch. The following snippet will make things clearer,
>>> x = float('nan')
>>> x == x, [x] == [x]
(False, True)
>>> y = float('nan')
>>> y == y, [y] == [y]
(False, True)
>>> x == y, [x] == [y]
(False, False)
Since the identities of x and y are different, the values are considered, which are also different; hence the comparison returns False this time.
- Interesting read: Reflexivity, and other pillars of civilization
▶ Mutating the immutable!
This might seem trivial if you know how references work in Python.
some_tuple = ("A", "tuple", "with", "values")
another_tuple = ([1, 2], [3, 4], [5, 6])
Output:
>>> some_tuple[2] = "change this"
TypeError: 'tuple' object does not support item assignment
>>> another_tuple[2].append(1000) #This throws no error
>>> another_tuple
([1, 2], [3, 4], [5, 6, 1000])
>>> another_tuple[2] += [99, 999]
TypeError: 'tuple' object does not support item assignment
>>> another_tuple
([1, 2], [3, 4], [5, 6, 1000, 99, 999])
But I thought tuples were immutable...
💡 Explanation:
- Quoting from https://docs.python.org/3/reference/datamodel.html
An object of an immutable sequence type cannot change once it is created. (If the object contains references to other objects, these other objects may be mutable and may be modified; however, the collection of objects directly referenced by an immutable object cannot change.)
+=operator changes the list in-place. The item assignment doesn't work, but when the exception occurs, the item has already been changed in place.- There's also an explanation in official Python FAQ.
▶ The disappearing variable from outer scope
e = 7
try:
raise Exception()
except Exception as e:
pass
Output (Python 2.x):
>>> print(e)
prints nothing
Output (Python 3.x):
>>> print(e)
NameError: name 'e' is not defined
💡 Explanation:
- Source: https://docs.python.org/3/reference/compound_stmts.html#except
as target, it is cleared at the end of the except clause. This is as if
except E as N:
foo
was translated into
except E as N:
try:
foo
finally:
del N
This means the exception must be assigned to a different name to be able to refer to it after the except clause. Exceptions are cleared because, with the traceback attached to them, they form a reference cycle with the stack frame, keeping all locals in that frame alive until the next garbage collection occurs.
- The clauses are not scoped in Python. Everything in the example is pr
README truncated. View on GitHub