def
tail
cauldron.display.tail()

The opposite of the head function. Displays the last count elements of the source object.

Arguments
Required
Optional
source

Any

DataFrames will show the last count rows of that DataFrame. A list, tuple or other iterable, will show the last count rows. Dictionaries will show count keys from the dictionary, which will be randomly selected unless you are using an OrderedDict. Strings will show the last count characters.

count

int

The number of elements to show from the source.

Default Value: 

5