Python Programming Language Quiz 2

Python Programming Language Quiz 2

For creating a symbolic link,we use





Which of the following is the correct expansion of list_list = [expr(j) for j in list_0 if func(j)] 





Which of the following is the use of id() function in python?





Which of the following is a Python tuple?





Which of the following uses the “in” operator is used to check if an item is in it?





What is the output of the following code? >>>str="hello there" >>>str[::-1]





What is the output of the following? True = False while True: print(True) break





Which of the following is used for storing values in the form of key and value





What does the function re.match do?





What is the output of the following? for i in ''.join(reversed(list('acbd'))): print (i)