Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) newline percentage symbol (%) ampersand (&) caret (^) newline percentage symbol (%) ampersand (&) ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? pip install tkinter tkinter pip install tkinter install pip install python pip install tkinter tkinter pip install tkinter install pip install python ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.U re.A re.I re.X re.U re.A re.I re.X ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango NameError ValueError SyntaxError TypeError NameError ValueError SyntaxError TypeError ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t import tkinter from tkinter import * All of the mentioned import tkinter as t import tkinter from tkinter import * All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Invalid type Tuples of lists Array of tuples List of tuples Invalid type Tuples of lists Array of tuples ANSWER DOWNLOAD EXAMIANS APP