Python Which of these about a dictionary is false? The values of a dictionary can be accessed using keys Dictionaries aren’t ordered The keys of a dictionary can be accessed using values Dictionaries are mutable The values of a dictionary can be accessed using keys Dictionaries aren’t ordered The keys of a dictionary can be accessed using values Dictionaries are mutable ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? False 0 1 True False 0 1 True ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? re regex pyregex none of the mentioned re regex pyregex none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter from tkinter import * import tkinter as t All of the mentioned import tkinter from tkinter import * import tkinter as t All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. set list dictionary tuple set list dictionary tuple ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? always when there is no exception when there is an exception only if some condition that has been specified is satisfied always when there is no exception when there is an exception only if some condition that has been specified is satisfied ANSWER DOWNLOAD EXAMIANS APP