The hex() function converts an integer number to the corresponding hexadecimal string.
[mai mult...]Python hasattr()
The hasattr() method returns true if an object has the given named attribute and false if it does not.
[mai mult...]Python setattr()
The setattr() function sets the value of the attribute of an object.
[mai mult...]Python super()
The super() builtin returns a proxy object (temporary object of the superclass) that allows us to access methods of the base class.
[mai mult...]Python zip()
The zip() function takes iterables (can be zero or more), aggregates them in a tuple, and returns it.
[mai mult...]Python slice()
The slice() function returns a slice object that is used to slice any sequence (string, tuple, list, range, or bytes).
[mai mult...]Python sorted()
The sorted() function sorts the elements of a given iterable in a specific order (ascending or descending) and returns it as a list.
[mai mult...]Python locals()
locals() method updates and returns the dictionary associated with the current local symbol table.
[mai mult...]Python next()
The next() function returns the next item from the iterator.
[mai mult...]Python ord()
The ord() function returns an integer representing the Unicode character.
[mai mult...]