Python How we import a tkinter in python program ? from tkinter import * import tkinter All of the mentioned import tkinter as t from tkinter import * import tkinter All of the mentioned import tkinter as t ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? int str String bool int str String bool ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of the following cannot be a variable? on in It __init__ on in It __init__ ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? ‘”Once upon a time…”, she said.’ ‘3\’ “He said, ‘Yes!'” ”’That’s okay”’ ‘”Once upon a time…”, she said.’ ‘3\’ “He said, ‘Yes!'” ”’That’s okay”’ ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.insert(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) newline ampersand (&) percentage symbol (%) caret (^) newline ampersand (&) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP