Python What type of data is: a=[(1,1),(2,4),(3,9)]? Array of tuples Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? The keys of a dictionary can be accessed using values Dictionaries are mutable Dictionaries aren’t ordered The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values Dictionaries are mutable Dictionaries aren’t ordered The values of a dictionary can be accessed using keys ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] list dictionary array tuple list dictionary array tuple ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? pip install tkinter tkinter install tkinter pip install pip install python pip install tkinter tkinter install tkinter pip install pip install python ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? 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 matches a pattern at the start of the string none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? except finally Assert Else except finally Assert Else ANSWER DOWNLOAD EXAMIANS APP