TeachMePy's profile picture. Teaching Python to Everyone

Teach Me Python

@TeachMePy

Teaching Python to Everyone

#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?

TeachMePy's tweet image. #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?

#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')]

TeachMePy's tweet image. #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')]

#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

TeachMePy's tweet image. #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

#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

TeachMePy's tweet image. #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

#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

TeachMePy's tweet image. #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

#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'

TeachMePy's tweet image. #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'

#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}

TeachMePy's tweet image. #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}

#Python Pop Quiz 🐍❓ What is the value of `NOT_FOUND` at the end of this code? A) NameError B) None C) 200 D) 0

TeachMePy's tweet image. #Python Pop Quiz 🐍❓

What is the value of `NOT_FOUND` at the end of this code?

A) NameError
B) None
C) 200
D) 0

#Python Pop Quiz 🐍❓ Which string method do you use to get the expected output? A) upper() B) casefold() C) swapcase() D) caseswitch()

TeachMePy's tweet image. #Python Pop Quiz 🐍❓

Which string method do you use to get the expected output?

A) upper()
B) casefold()
C) swapcase()
D) caseswitch()

#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

TeachMePy's tweet image. #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

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-automatio…

pythonshow.com

09 - Automation and Python with Al Sweigart

In today’s episode, we have a special guest: Al Sweigart.


#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

TeachMePy's tweet image. #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

#Python Pop Quiz 🐍❓ What is the output of this code? A) SyntaxError B) True C) False D) None

TeachMePy's tweet image. #Python Pop Quiz 🐍❓

What is the output of this code?

A) SyntaxError
B) True
C) False
D) None

#Python Pop Quiz 🐍❓ What is the output of the following code? A) True B) False C) SyntaxError D) None of the above

TeachMePy's tweet image. #Python Pop Quiz 🐍❓

What is the output of the following code?

A) True
B) False
C) SyntaxError
D) None of the above

#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

TeachMePy's tweet image. #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

#Python Pop Quiz 🐍❓ What is the output of the following code? A) Py.py = 7 Cy.py = 3.14 Vy.py = 7 B) = 7 = 3.14 = 1 C) None of the above

TeachMePy's tweet image. #Python Pop Quiz 🐍❓

What is the output of the following code?

A) Py.py = 7 Cy.py = 3.14 Vy.py = 7
B)  = 7  = 3.14  = 1
C) None of the above

#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

TeachMePy's tweet image. #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

#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!?

TeachMePy's tweet image. #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!?

#Python Pop Quiz 🐍❓ What is the output of the following code? A) SyntaxError B) None C) Ellipsis D) None of the above

TeachMePy's tweet image. #Python Pop Quiz 🐍❓

What is the output of the following code?

A) SyntaxError
B) None
C) Ellipsis
D) None of the above

Loading...

Something went wrong.


Something went wrong.