컴공생의 다이어리

[파이썬, Python] 운영체제(os) 확인하기 본문

Development/Python & Django

[파이썬, Python] 운영체제(os) 확인하기

컴공 K 2021. 10. 4. 00:01

Python 운영체제(os) 확인하기

파이썬 코드를 통해 운영체제를 확인하고 싶다면 platform 모듈을 사용해서 정보를 얻을 수 있다. 나의 경우 os만 확인하면 되는 것이라 아래 코드로 충분하지만 혹시 platform 관련 다른 정보가 추가적으로 필요하다면 표에 있는 함수와 아래 첨부한 링크를 참고해서 사용하면 될 것 같다.

import platform
print(platform.system())

# os   | platform.system() 결과
# Linux: Linux
# Mac: Darwin
# Windows: Windows

 

 

https://pymotw.com/3/platform/#operating-system-and-hardware-info

 

platform — System Version Information — PyMOTW 3

platform — System Version Information Purpose:Probe the underlying platform’s hardware, operating system, and interpreter version information. Although Python is often used as a cross-platform language, it is occasionally necessary to know what sort of

pymotw.com

728x90
Comments