Python What does the function re.match do? none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string such a function does not exist none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string such a function does not exist ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? ”’That’s okay”’ ‘”Once upon a time…”, she said.’ ‘3\’ “He said, ‘Yes!'” ”’That’s okay”’ ‘”Once upon a time…”, she said.’ ‘3\’ “He said, ‘Yes!'” ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Frame Label All of the mentioned Window Frame Label All of the mentioned Window ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) ANSWER DOWNLOAD EXAMIANS APP