331. What is the result of: print(type({}))
332. Which of the following will convert a string '123' into an integer?
333. What is the output of: print(10 // 3)
334. Which function will return the absolute value of a number?
335. What is the correct way to catch multiple exceptions?
336. What does the `zip()` function return?
337. Which of these removes all items from a list?
338. What is the output of: len('Hello World')
339. What does `list(map(str, [1, 2, 3]))` return?
340. Which of the following is **not** a valid boolean value in Python?