Python Which of following Python Network/Internet modules supports HTTP protocol? httplib urllib xmlrpclib All of the mentioned httplib urllib xmlrpclib All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango TypeError NameError SyntaxError ValueError TypeError NameError SyntaxError ValueError ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * import tkinter import tkinter as t All of the mentioned from tkinter import * import tkinter import tkinter as t All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.add(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. 5 or less exactly 4 exactly 5 5 or more 5 or less exactly 4 exactly 5 5 or more ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? Error False True Machine dependent Error False True Machine dependent ANSWER DOWNLOAD EXAMIANS APP