This is the character returned by "I Love Python"[5]
What is "e"?
This loop runs forever.
What is an infinite loop or what is a while True loop?
The revolutionary computer architecture that allowed for the program and data to be stored in memory.
What is the Von Neumann Architecture?
This is used to create multi-line comments.
What is '''?
Computers run on this number system.
What is Binary?
We use this type of statement to iterate through a collection of elements.
What is a for loop?
L = [ ['a','b','c'], ['x','y','z'] ]
The statement that would print 'y' by accessing its index.
What is print( L[1][1] )?
A statement that allows us to check and deal with potential errors when running some code.
What is a try/ except statement?
The statement that would add the key 'a' and value 'A' to a dictionary called D.
What is D['a'] = 'A'