Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary tuple array list dictionary tuple array list ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? none of the mentioned such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? id returns the identity of the object Every object doesn’t have a unique id None of the mentioned All of the mentioned id returns the identity of the object Every object doesn’t have a unique id None of the mentioned All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.regex(str) re.compile(str) re.assemble(str) re.create(str) re.regex(str) re.compile(str) re.assemble(str) re.create(str) ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? x^^y x**y None of the mentioned x^y x^^y x**y None of the mentioned x^y ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate global variables they confuse the interpreter they slow down execution they are used to indicate a private variables of a class they are used to indicate global variables they confuse the interpreter they slow down execution they are used to indicate a private variables of a class ANSWER DOWNLOAD EXAMIANS APP