Teaching Python to Everyone

Joined September 2022
123 Photos and videos
#Python Pop Quiz πŸβ“ What's in the `b` variable? A) 2 B) [2, 3, 4, 5] C) [2, 3, 4] D) What is this madness?
11
6
24
2,982
#Python Pop Quiz πŸβ“ What does the following code print out? A) Some kind of exception is raised B) [(1, 'a'), (2, 'b'), (3, 'c')] C) [(1, 'a'), (2, 'b'), (3, 'c'), (4, ''), (5, '')] D) [(1, 'a'), (2, 'b'), (3, 'c'), (4, 'a'), (5, 'b')]
3
3
9
1,502
#Python Pop Quiz πŸβ“ What does the `my_list` look like after this code runs? A) [] B) [1, 3, 5] C) [2, 4, 6] D) An IndexError is raised
3
11
1,697
#Python Pop Quiz πŸβ“ What does the following code print out, if anything? A) An exception B) 1 C) 2 D) 3 E) None of the above
1
8
1,136
#Python Pop Quiz πŸβ“ What will be the output if you run this code? A) integers_found = 2 bools_found = 3 B) integers_found = 5 bools_found = 2 C) integers_found = 5 bools_found = 0 D) integers_found = 5 bools_found = 5
4
7
891
#Python Pop Quiz πŸβ“ What will be the output if you run this code? A) 'a, b, c' B) 'c, b, a' C) '' D) 'b, a, c'
6
6
1,132
#Python Pop Quiz πŸβ“ What will be the output if you run this code? A) {range} B) (range) C) [0, 1, 2] D) (0, 1, 2) E) {0, 1, 2}
4
6
1,196
#Python Pop Quiz πŸβ“ What is the value of `NOT_FOUND` at the end of this code? A) NameError B) None C) 200 D) 0
2
1
5
856
#Python Pop Quiz πŸβ“ Which string method do you use to get the expected output? A) upper() B) casefold() C) swapcase() D) caseswitch()
2
7
888
#Python Pop Quiz πŸβ“ What is the output of this crazy code? A) SyntaxError B) RuntimeError C) 2 D) 1 1 E) None of the above
5
1
12
6,019
Don't miss episode number NINE of The Python Show podcast with @driscollis This week's episode features Al Sweigart @AlSweigart author of Automating the Boring Stuff with Python and many other books! 🐍 pythonshow.com/p/09-automati…
2
14
4,579
#Python Pop Quiz πŸβ“ What do you use to turn the `amount()` method into an attribute? A) @staticmethod B) @classmethod C) @property D) None of the above
2
683
#Python Pop Quiz πŸβ“ What is the output of this code? A) SyntaxError B) True C) False D) None
14
6
44
9,639
#Python Pop Quiz πŸβ“ What is the output of the following code? A) True B) False C) SyntaxError D) None of the above
4
1
6
1,225
#Python Pop Quiz πŸβ“ What is the output of the last line in this REPL session? A) 'blue' B) SyntaxError C) AttributeError D) None of the above
6
3
28
10,795
#Python Pop Quiz πŸβ“ What is the output of the following code? A) Py.py = 7 Cy.py = 3.14 Vy.py = 7 B) Py.py = 7 Cy.py = 3.14 Vy.py = 1 C) None of the above
2
8
22
5,480
#Python Pop Quiz πŸβ“ What does this code print out in Python 3.9 ? A) SyntaxError B) bark bark! None C) bark bark! D) None of the above
8
4
21
9,453
#Python Pop Quiz πŸβ“ What is the output of this crazy code? A) [[0, 0, 0], [0, 0, 0], [0, 0, 0]] B) [['python', 0, 0], ['python', 0, 0], ['python', 0, 0]] C) [[0, 'python', 0], [0, 'python', 0], [0, 'python', 0]] D) What the heck!?
3
3
13
1,397
#Python Pop Quiz πŸβ“ What is the output of the following code? A) SyntaxError B) None C) Ellipsis D) None of the above
2
1
8
1,100