1"""
2categories: Modules,os
3description: ``getenv`` returns actual value instead of cached value
4cause: The ``environ`` attribute is not implemented
5workaround: Unknown
6"""
7import os
8
9print(os.getenv("NEW_VARIABLE"))
10os.putenv("NEW_VARIABLE", "VALUE")
11print(os.getenv("NEW_VARIABLE"))
12