Python Which of the following is invalid variable in Python? _a = 1 __a = 1 None of the mentioned __str__ = 1 _a = 1 __a = 1 None of the mentioned __str__ = 1 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.assemble(str) re.create(str) re.compile(str) re.regex(str) re.assemble(str) re.create(str) re.compile(str) re.regex(str) ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? All of the mentioned import tkinter as t import tkinter from tkinter import * All of the mentioned import tkinter as t import tkinter from tkinter import * ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? 31 characters 63 characters None of the mentioned 79 characters 31 characters 63 characters None of the mentioned 79 characters ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? pyregex re none of the mentioned regex pyregex re none of the mentioned regex ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 0 2 4 1 0 2 4 ANSWER DOWNLOAD EXAMIANS APP