Python Why are local variable names beginning with an underscore discouraged in Python Programming? they slow down execution they confuse the interpreter they are used to indicate global variables they are used to indicate a private variables of a class they slow down execution they confuse the interpreter they are used to indicate global variables they are used to indicate a private variables of a class ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addLast(5) list1.addEnd(5) list1.append(5) list1.add(5) list1.addLast(5) list1.addEnd(5) list1.append(5) list1.add(5) ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? True False 1 0 True False 1 0 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.U re.A re.X re.I re.U re.A re.X re.I 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
Python Essential thing to create a window screen using tkinter python create a button To define a geometry call tk() function All of the mentioned create a button To define a geometry call tk() function All of the mentioned ANSWER DOWNLOAD EXAMIANS APP