141. What is the output of: print(type(True))?
142. Which method returns the index of the first occurrence of a value in a list?
143. Which of the following is used to handle multiple exceptions?
144. What does the `strip()` function do in Python?
145. Which operator is used to raise a number to a power?
146. How do you convert a string '123' to an integer?
147. What is the result of 10 % 3?
148. What does the `pop()` method do to a list?
149. Which type of loop is best for iterating over a known range?
150. Which of the following will create a string in Python?