Kodeclik Blog


How to access environment variable values in Python

Environment variables are variables that are set in the operating system and can be accessed by different programs. They are useful for storing configuration values or other information that needs to be shared between different applications. In Python, we can access environment variables using the os module. In this blog post, we will discuss two different ways to access environment variable values in Python.

Method 1: Use the os.environ dictionary variable

The first approach is to use the os.environ dictionary variable. As the name indicates, a dictionary is a collection of (key, value) pairs. The os module provides a dictionary-like object called environ that contains the current environment variables as key-value pairs. We can use this dictionary to access environment variables as follows:
You will get a huge output that might look like:
(Your particular output will vary.) As you can see from the output, the collection of environment variables is a dictionary of (key, value) pairs. Thus there is a key called “COLORTERM” which is set to “truecolor” and so on. If you would like to access any particular environment variable, you can access with the name of the variable as the key, like so:
This will output:
Another useful environment variable is “HOME” which refers to the home directory. So if we try:
We will get something like:
(Again, your output might be different.)

Method 2: Use the os.getenv() method

The second approach is to use the os.getnev method that directly returns the value for a given environment variable.
Thus if we try:
We will get:
Note that getenv is a function that takes an argument as input (using parentheses) whereas environ is a dictionary that we index (using square brackets).
Let us now try using both approaches above with variables that don’t exist. First, let us try os.environ:
we will get:
Thus Python complains that the key doesn’t exist.
If we try with getenv:
we obtain:
Thus, getenv gives you a graceful “None” as the answer whereas the environ dictionary complains that such a key does not exist. This is a key difference between these two methods.
If you like you can first check if the given key exists using a separate function, like so:
The output will be:
So in conclusion, we discussed two ways to access environment variable values in Python. We used the os.environ dictionary to access environment variables as key-value pairs, and we used the os.getenv() function to get the value of a specific environment variable. Both methods are valid and produce the same result, but the second one is ideal if the key/variable you are looking for does not exist. In the former case, when used with a non-existent key you need to use exception handling to gracefully trap the error. It is good programming practice to first check if the key exists before attempting to do something with it.
If you liked learning how to get access to environment variables, learn how to set environment variables. Also learn more about finding Python parent paths using the os.path module!
Interested in more things Python? Checkout our post on Python queues. Also see our blogpost on Python's enumerate() capability. Also if you like Python+math content, see our blogpost on Magic Squares. Finally, master the Python print function!
Want to learn Python with us? Sign up for 1:1 or small group classes.

Join our mailing list

Subscribe to get updates about our classes, camps, coupons, and more.
  • ABOUT

Copyright @ Kodeclik 2023. All rights reserved.