Python To add a new element to a list we use which Python command? list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) ANSWER DOWNLOAD EXAMIANS APP
Python Which Python is used by client to opens a TCP connection to hostname? s.connect() All of the mentioned s.bind() s.accept() s.connect() All of the mentioned s.bind() s.accept() ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ ampersand (&) newline percentage symbol (%) caret (^) ampersand (&) newline percentage symbol (%) caret (^) ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 4 2 1 0 4 2 1 ANSWER DOWNLOAD EXAMIANS APP
Python How we install tkinter in system ? pip install tkinter tkinter pip install pip install python tkinter install pip install tkinter tkinter pip install pip install python tkinter install ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? always when there is an exception only if some condition that has been specified is satisfied when there is no exception always when there is an exception only if some condition that has been specified is satisfied when there is no exception ANSWER DOWNLOAD EXAMIANS APP