Skip to content

Dev: Cookbook

Gonzalo Peña-Castellanos edited this page Apr 20, 2015 · 14 revisions

A series of Python/Spyder common recipes to take into account when coding

Python

Make operations that depend on the Operating System (OS)

import os
import sys

if os.name == 'nt':
    pass

if sys.platform.startswith('linux'):
    pass

if sys.platform == 'darwin':
    pass

Clone this wiki locally