Python Module os

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

Environment Variables

import os

print(os.environ.get('HOME'))

If the environment variable does not exist, the call will get None

Working Directory

File Operations in Python | Working Directory