Posts [Python] os.environ.get 과 os.getenv 는 다른 걸까?
Post
Cancel

[Python] os.environ.get 과 os.getenv 는 다른 걸까?

결론

둘 다 똑같이 환경변수를 불러오는 기능을 한다.

os.getenvos.environ.get 을 감싸는 함수에 불과하다.

os.py 를 열어서 살펴보면 getenv 함수는 아래와 같이 정의되어 있다.

1
2
3
4
5
def getenv(key, default=None):
    """Get an environment variable, return None if it doesn't exist.
    The optional second argument can specify an alternate default.
    key, default and the result are str."""
    return environ.get(key, default)

참고자료

This post is licensed under CC BY 4.0 by the author.

[Visual Studio Code, Mac] ssh remote connect 오류 해결 : Could not establish connection to ~ Permission denied(publickey).

[AWS] IAM Role(역할) 과 Policy(정책) 의 차이