math.nan

math.nan represents the real value "Not a Number" (NaN). It is equivalent to the result of float("nan").

Submitted by admin on Tue, 01/19/2021 - 12:36

math.inf

math.inf represents the positive infinitive real number. The result is equivalent to float ("inf") .

Submitted by admin on Tue, 01/19/2021 - 12:07

math.isinf

The math.isinf function returns the Boolean True if the number passed as an argument is infinite (either positive or negative), or False otherwise.

Submitted by admin on Tue, 01/19/2021 - 11:29

math.floor

The math.floor function returns the integer closest to argument passed that is less than or equal to it.

Submitted by admin on Tue, 01/19/2021 - 10:40

math.ceil

The math.ceil function returns the integer closest to the argument passed that is greater than or equal to it.

Submitted by admin on Tue, 01/19/2021 - 10:27

tuple

The tuple class returns an immutable iterable object of type tuple (a tuple).

Submitted by admin on Tue, 01/19/2021 - 10:04

set

The set built-in class returns a set made up of the elements of the iterable included as an argument.

Submitted by admin on Mon, 01/18/2021 - 23:10

reversed

The reversed function returns an iterator made up of the values of the object included as an argument after reversing their order.

Submitted by admin on Sun, 01/17/2021 - 15:38