13 lines
198 B
Python
13 lines
198 B
Python
import os
|
|
|
|
|
|
def is_windows():
|
|
"""
|
|
Returns true if the local system/OS name is Windows.
|
|
|
|
Returns:
|
|
True if the local system/OS name is Windows.
|
|
|
|
"""
|
|
return os.name == "nt"
|