List reverse() Method

In Python Built-In List reverse() method is used to reverse objects of the given list in place. Syntax: No Parameter is used in list reverse() method. Example:

List sort() Method

In Python Built-In List sort() method is used to sort objects of given list, and use compare func if given. Syntax: No Parameter is used in list sort() method. Example:

Tuple len(tuple) Function

In Python Built-In Tuple len(tuple) function is used to returns the number of elements in the given tuple. Syntax: There is 1 Parameter used in Tuple len(tuple) Function: list for which the number of elements to be counted. Example:

Lists cmp() Function

In Python Built-In Lists cmp() function is used to compare 2 elements in the given list. Syntax: There are 2 parameters used in Lists cmp() Function : list1 The first list to be compared and list2 The second list to be compared. Example:

List len(list) Function:

In Python Built-In List len(list) function is used to returns the number of elements in the given list. Syntax: There is 1 Parameter used in Lists len(list) Function: list for which the number of elements to be counted. Example:

Tuple tuple(seq) Function

In Python Tuple tuple(seq) function takes types of the sequence and converts them to Tuple. Simply used to convert the list into a tuple. Syntax: There is 1 Parameter used in Lists list(seq) Function: seq A tuple to be converted into the list. Example:

Java Reflection

Java Reflection is an API. This API is used to examine or modify the run time behavior of a class, method or interface. This scenario is called Java Reflection. The packages that provide tools for Java Reflection are java.lang and java.lang.reflect packages. These packages further contain the classes like java.lang.Class. This class contains methods that … Read more

Dictionary update() method

In Python Dictionary update() method is used to update the dictionary with the elements from another dictionary object. Syntax: Update() method take dictionary or an iterable object of key pairs mostly tuples as Parameters. Example:

Dictionary keys() method

In Python Dictionary keys() method is used to return a view object that displays a list of all the keys in the given dictionary. Syntax: There are no Parameters in dictionary keys() method. Example:

Tuple cmp() Function Python 2 and 3

In Python 2 Built-In Tuple cmp() function is used to compare 2 elements in the given Tuple. Syntax: There are 2 parameters used in Tuple cmp() Function: tuple1 The first list to be compared and tuple2 The second list to be compared. Example: Tuple cmp() Function Python 3 In Python 3, the cmp function does not exists and the … Read more