Python Which of the following blocks will be executed whether an exception is thrown or not? Assert except finally Else Assert except finally Else ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? All of the mentioned import tkinter import tkinter as t from tkinter import * All of the mentioned import tkinter import tkinter as t from tkinter import * ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? 63 characters 31 characters None of the mentioned 79 characters 63 characters 31 characters None of the mentioned 79 characters ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? __str__ = 1 _a = 1 None of the mentioned __a = 1 __str__ = 1 _a = 1 None of the mentioned __a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 1 2 4 0 1 2 4 ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? regex re none of the mentioned pyregex regex re none of the mentioned pyregex ANSWER DOWNLOAD EXAMIANS APP