Python What is the result of cmp(3, 1) in python? 0 True False 1 0 True False 1 ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ None of the mentioned UPPER CASE lower case Capitalized None of the mentioned UPPER CASE lower case Capitalized ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 2 0 4 1 2 0 4 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.regex(str) re.compile(str) re.assemble(str) re.create(str) re.regex(str) re.compile(str) re.assemble(str) re.create(str) ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? 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 they slow down execution ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t All of the mentioned import tkinter from tkinter import * import tkinter as t All of the mentioned import tkinter from tkinter import * ANSWER DOWNLOAD EXAMIANS APP