@@ -60,17 +60,17 @@ So, here we go...
6060 - [ ▶ When True is actually False] ( #%E2%96%B6-when-true-is-actually-false )
6161 - [ ▶ From filled to None in one instruction...] ( #%E2%96%B6-from-filled-to-none-in-one-instruction )
6262 - [ ▶ Subclass relationships * ] ( #%E2%96%B6-subclass-relationships- )
63- - [ ▶ Implicity key type conversion * ] ( #%E2%96%B6-implicity -key-type-conversion- )
63+ - [ ▶ The mysterious key type conversion * ] ( #%E2%96%B6-the-mysterious -key-type-conversion- )
6464 - [ ▶ Let's see if you can guess this?] ( #%E2%96%B6-lets-see-if-you-can-guess-this )
6565 - [ Section: Watchout for the landmines!] ( #section-watchout-for-the-landmines )
6666 - [ ▶ Modifying a dictionary while iterating over it] ( #%E2%96%B6-modifying-a-dictionary-while-iterating-over-it )
6767 - [ ▶ Stubborn ` del ` operator * ] ( #%E2%96%B6-stubborn-del-operator- )
68- - [ ▶ Deleting a list item while iterating over it ] ( #%E2%96%B6-deleting-a-list-item-while-iterating-over-it )
69- - [ ▶ Loop variables leaking out of local scope !] ( #%E2%96%B6-loop-variables-leaking-out-of-local-scope )
68+ - [ ▶ Deleting a list item while iterating] ( #%E2%96%B6-deleting-a-list-item-while-iterating )
69+ - [ ▶ Loop variables leaking out!] ( #%E2%96%B6-loop-variables-leaking-out )
7070 - [ ▶ Beware of default mutable arguments!] ( #%E2%96%B6-beware-of-default-mutable-arguments )
71- - [ ▶ Catching the Exceptions! ] ( #%E2%96%B6-catching-the-exceptions )
71+ - [ ▶ Catching the Exceptions] ( #%E2%96%B6-catching-the-exceptions )
7272 - [ ▶ Same operands, different story!] ( #%E2%96%B6-same-operands-different-story )
73- - [ ▶ Using a variable not defined in scope] ( #%E2%96%B6-using-a-variable-not-defined-in- scope )
73+ - [ ▶ The out of scope variable ] ( #%E2%96%B6-the-out-of- scope-variable )
7474 - [ ▶ Be careful with chained operations] ( #%E2%96%B6-be-careful-with-chained-operations )
7575 - [ ▶ Name resolution ignoring class scope] ( #%E2%96%B6-name-resolution-ignoring-class-scope )
7676 - [ ▶ Needle in a Haystack] ( #%E2%96%B6-needle-in-a-haystack )
@@ -1416,7 +1416,7 @@ The Subclass relationships were expected to be transitive, right? (i.e., if `A`
14161416
14171417---
14181418
1419- ### ▶ Implicity key type conversion *
1419+ ### ▶ The mysterious key type conversion *
14201420
14211421```py
14221422class SomeClass(str):
@@ -1611,7 +1611,7 @@ Okay, now it's deleted :confused:
16111611
16121612---
16131613
1614- ### ▶ Deleting a list item while iterating over it
1614+ ### ▶ Deleting a list item while iterating
16151615
16161616```py
16171617list_1 = [1, 2, 3, 4]
@@ -1671,7 +1671,7 @@ Can you guess why the output is `[2, 4]`?
16711671
16721672---
16731673
1674- ### ▶ Loop variables leaking out of local scope !
1674+ ### ▶ Loop variables leaking out!
16751675
167616761\.
16771677```py
@@ -1791,7 +1791,7 @@ def some_func(default_arg=[]):
17911791
17921792---
17931793
1794- ### ▶ Catching the Exceptions!
1794+ ### ▶ Catching the Exceptions
17951795
17961796```py
17971797some_list = [1, 2, 3]
@@ -1908,7 +1908,7 @@ a += [5, 6, 7, 8]
19081908
19091909---
19101910
1911- ### ▶ Using a variable not defined in scope
1911+ ### ▶ The out of scope variable
19121912
19131913```py
19141914a = 1
0 commit comments