Python Which of the following creates a pattern object? re.compile(str) re.assemble(str) re.create(str) re.regex(str) re.compile(str) re.assemble(str) re.create(str) re.regex(str) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.A re.X re.I re.U re.A re.X re.I re.U ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? Machine dependent Error True False Machine dependent Error True False ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ UPPER CASE Capitalized lower case None of the mentioned UPPER CASE Capitalized lower case None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python config() in python Tkinter are used for configure the widget destroy the widget change property of the widget place the widget configure the widget destroy the widget change property of the widget place the widget ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 0 1 4 2 0 1 4 ANSWER DOWNLOAD EXAMIANS APP