News

New paper! in the American Naturalist

Thursday, November 15, 2018

Python OS cheatsheet



This is a cheatsheet of python package os.
import os

os.getcwd() # returns the path to the current directory as str
os.chdir(path) # change directory through the specified path (str)