-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
import os
import sys
# Operations for windows only
if os.name == 'nt':
pass
# Operations for linux only
if sys.platform.startswith('linux'):
pass
# Operations for Mac only
if sys.platform == 'darwin':
pass
# Operations for unix (linux and mac)
if os.name != 'nt':
passConnect with Spyder through our social media channels and stay up to date with current developments!