281. What is the output of: print('Python'[::-1])
282. Which keyword is used to create a generator function?
283. Which of the following is true about Python lists?
284. What will be the output of: x = [0, 1, 2, 3] print(x[-2])
285. What does `set.add()` do?
286. What is the correct way to catch any exception in Python?
287. What is the result of: 'a' in ['a', 'b', 'c']
288. What is the output of: x = [1, 2, 3] print(len(x))
289. Which of the following will convert a list of characters into a string?
290. Which of the following is a mutable data type in Python?