1.
What is the output of the following Python code:
a = [1, 2, 3, 4, 5, 6, 7, 8, 9]
print(a[::2])
2.
What is the output of the following Python code:
def f(value, values):
    v = 1
values[1] = -1

t = 3
v = [1, 2, 3]
f(t, v)
print(t, v[1])
3.
What is the output of the following Python code:
l1 = [1, 2, 3]
l1.pop()
l1.push(1)
4.
What is the output of the following Python code:
init_tuple = (1, ) * 3
init_tuple[0] = 2
print(init_tuple)
5.
Which of the following statements is used to delay the execution time of a thread in Python?
6.
What is the output of the following Python code:
def string_func():
    m = "x" + "yz"
print(m)
m[0] = "p"
print(m)

try:
string_func()
except:
    pass
7.
What is the output of the following Python code:
my_string = "mew world"
k = [print(i) for i in my_string
    if i not in "aeiou"
]
print(k)
8.
What is the output of the following Python code:
print([i.lower() for i in "YELLOW"])
9.
What is the output of the following Python code:
print([i + j
    for i in "abc"
    for j in "def"
])
10.
What is the output of the following Python code:
def foo(k):
    k = [3]
q = [0]
foo(q)
print(q)