Python Which Python keyword is used for function? Define Fun Def Function Define Fun Def Function ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? All of the mentioned id returns the identity of the object Every object doesn’t have a unique id None of the mentioned All of the mentioned id returns the identity of the object Every object doesn’t have a unique id None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python In Python GUI programming, the method that leaves an impression of a turtle shape at the current location All of the mentioned stamp() shape() position() All of the mentioned stamp() shape() position() ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ percentage symbol (%) newline ampersand (&) caret (^) percentage symbol (%) newline ampersand (&) caret (^) ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Array of tuples Invalid type Tuples of lists List of tuples Array of tuples Invalid type Tuples of lists List of tuples ANSWER DOWNLOAD EXAMIANS APP