pyufunc.check_platform#

pyufunc.check_platform()#

Check the current platform.

Returns:

the current platform

Return type:

str

Example

>>> from pyufunc import check_platform
>>> check_platform()
'Windows'
>>> check_platform()
'Linux'
>>> check_platform()
'Darwin'