Python Which of the following is invalid variable in Python? _a = 1 __str__ = 1 __a = 1 None of the mentioned _a = 1 __str__ = 1 __a = 1 None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Label Window All of the mentioned Frame Label Window All of the mentioned Frame ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter canvas.create_line() None of the mentioned line() create_line(canvas) canvas.create_line() None of the mentioned line() create_line(canvas) ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? none of the mentioned regex re pyregex none of the mentioned regex re pyregex ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate a private variables of a class they slow down execution they confuse the interpreter they are used to indicate global variables they are used to indicate a private variables of a class they slow down execution they confuse the interpreter they are used to indicate global variables ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * import tkinter as t All of the mentioned import tkinter from tkinter import * import tkinter as t All of the mentioned import tkinter ANSWER DOWNLOAD EXAMIANS APP