121. What is the output of: print(len(''))?
122. Which symbol is used to unpack a list or tuple into arguments?
123. What does `list(range(3))` return?
124. Which of the following will raise an error?
125. How do you get the keys of a dictionary?
126. Which keyword is used to write a loop that runs at least once?
127. What is the output of: print(True and False)?
128. Which function is used to find the length of a string?
129. Which of the following is used to define a block of code?
130. What is the output of: print(type([]) == list)?