Python In order to store values in terms of key and value we use what Python core data type. list dictionary set tuple list dictionary set tuple ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at any position in the string matches a pattern at the start of the string none of the mentioned such a function does not exist matches a pattern at any position in the string matches a pattern at the start of the string none of the mentioned such a function does not exist ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.append(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) percentage symbol (%) ampersand (&) newline caret (^) percentage symbol (%) ampersand (&) newline 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 What arithmetic operators cannot be used with strings in Python? * – All of the mentioned + * – All of the mentioned + ANSWER DOWNLOAD EXAMIANS APP