Python Which of the following is not a standard exception in Python? ValueError IOError AssignmentError NameError ValueError IOError AssignmentError NameError ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t from tkinter import * All of the mentioned import tkinter import tkinter as t from tkinter import * All of the mentioned import tkinter ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at any position in the string none of the mentioned such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist matches a pattern at the start of the string ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? pip install tkinter pip install python tkinter pip install tkinter install pip install tkinter pip install python tkinter pip install tkinter install ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
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