Python Module os

From NovaOrdis Knowledge Base
Revision as of 01:32, 20 June 2022 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

External

Internal

Overview

Environment Variables

To get an environment variable:

import os

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

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

To set an environment variable:

import os
os.environ['MY_VAR'] = 'myvalue'

This works for testing.

Working Directory

File Operations in Python | Working Directory