Python The expression a{5} will match _____________ characters with the previous regular expression. exactly 4 exactly 5 5 or less 5 or more exactly 4 exactly 5 5 or less 5 or more ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Tuples Lists Class Dictionary Tuples Lists Class Dictionary ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addEnd(5) list1.append(5) list1.add(5) list1.addLast(5) list1.addEnd(5) list1.append(5) list1.add(5) list1.addLast(5) ANSWER DOWNLOAD EXAMIANS APP
Python Essential thing to create a window screen using tkinter python create a button To define a geometry call tk() function All of the mentioned create a button To define a geometry call tk() function All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 4 1 2 0 4 1 2 ANSWER DOWNLOAD EXAMIANS APP
Python Which one of these is used for floor division in Python? // None of the mentioned % / // None of the mentioned % / ANSWER DOWNLOAD EXAMIANS APP