Python Say s=”hello” what will be the return value of type(s) in Python? str int String bool str int String bool ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Function Fun Define Def Function Fun Define Def ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.U re.A re.I re.X re.U re.A re.I re.X ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __str__ = 1 None of the mentioned __a = 1 _a = 1 __str__ = 1 None of the mentioned __a = 1 _a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 4 0 1 2 4 0 1 2 ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? 1 0 True False 1 0 True False ANSWER DOWNLOAD EXAMIANS APP