351. What is the result of: print(bool(0.0))
352. Which of these methods can be used to copy a list?
353. What is the correct way to remove the last item from a list?
354. What is the output of: print('a' * 3)
355. Which method adds an element to the end of a list?
356. Which operator checks if two variables reference the same object?
357. What is the result of: not 0 and 1
358. Which data structure allows duplicate values?
359. What is the output of: print('1,2,3'.split(','))
360. What does `list.index(value)` do?