Python Say s=”hello” what will be the return value of type(s) in Python? String bool int str String bool int str ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.assemble(str) re.regex(str) re.compile(str) re.create(str) re.assemble(str) re.regex(str) re.compile(str) re.create(str) ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Fun Def Define Function Fun Def Define Function ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Array of tuples Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] tuple dictionary array list tuple dictionary array list ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? None of the mentioned x^^y x^y x**y None of the mentioned x^^y x^y x**y ANSWER DOWNLOAD EXAMIANS APP