Python Say s=”hello” what will be the return value of type(s) in Python? bool String str int bool String str int ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than zero one more than one zero more than zero one more than one zero ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? True Error False Machine dependent True Error False Machine dependent ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? pip install python pip install tkinter tkinter install tkinter pip install pip install python pip install tkinter tkinter install tkinter pip install ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] tuple dictionary list array tuple dictionary list array ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 1 0 4 2 1 0 4 ANSWER DOWNLOAD EXAMIANS APP