pyufunc.is_linux#

pyufunc.is_linux()#

Check if the current platform is Linux.

Returns:

True if the current platform is Linux, otherwise False

Return type:

bool

Example

>>> from pyufunc import is_linux
>>> is_linux()
True
>>> is_linux()
False