pyufunc.is_windows# pyufunc.is_windows()# Check if the current platform is Windows. Returns: True if the current platform is Windows, otherwise False Return type: bool Example >>> from pyufunc import is_windows >>> is_windows() True >>> is_windows() False