Python How we import a tkinter in python program ? import tkinter from tkinter import * All of the mentioned import tkinter as t import tkinter from tkinter import * All of the mentioned import tkinter as t ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of the following cannot be a variable? in __init__ It on in __init__ It on ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? Error Machine dependent True False Error Machine dependent True False ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? int String str bool int String str bool ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at the start of the string none of the mentioned matches a pattern at any position in the string such a function does not exist matches a pattern at the start of the string none of the mentioned matches a pattern at any position in the string such a function does not exist ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter create_line(canvas) canvas.create_line() line() None of the mentioned create_line(canvas) canvas.create_line() line() None of the mentioned ANSWER DOWNLOAD EXAMIANS APP