Python In Python, which of the following cannot be a variable? on It __init__ in on It __init__ in ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.insert(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ percentage symbol (%) caret (^) ampersand (&) newline percentage symbol (%) caret (^) ampersand (&) newline 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 When will the else part of try-except-else be executed? when an exception occurs in to except block when no exception occurs when an exception occurs Always when an exception occurs in to except block when no exception occurs when an exception occurs Always ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Array of tuples Invalid type Tuples of lists List of tuples Array of tuples Invalid type Tuples of lists ANSWER DOWNLOAD EXAMIANS APP