411. What is the result of: x = (1, 2, 3) x[0] = 5
412. What is the output of: print([i for i in range(5) if i % 2 == 0])
413. Which module in Python is used for serialization?
414. What will this code output? def foo(): try: return 1 finally: return 2 print(foo())
415. Which of the following is true about Python memory management?
416. What will be the output? x = 'abc' y = ''.join([i for i in x if i != 'b']) print(y)
417. What is the purpose of the `nonlocal` keyword?
418. Which of these statements about Python decorators is true?
419. What does the `*args` syntax allow a function to do?
420. Which built-in function will execute another function for each element and return an iterator?