Python What is the maximum possible length of an identifier allowed by Python? 31 characters None of the mentioned 63 characters 79 characters 31 characters None of the mentioned 63 characters 79 characters ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? Always when an exception occurs when an exception occurs in to except block when no exception occurs Always when an exception occurs when an exception occurs in to except block when no exception occurs ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? Every object doesn’t have a unique id id returns the identity of the object None of the mentioned All of the mentioned Every object doesn’t have a unique id id returns the identity of the object None of the mentioned All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? None of the mentioned __a = 1 _a = 1 __str__ = 1 None of the mentioned __a = 1 _a = 1 __str__ = 1 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.X re.U re.I re.A re.X re.U re.I re.A ANSWER DOWNLOAD EXAMIANS APP