Python
[Python] Python에서 시스템의 운영체제 확인하기
24시간초보
2021. 5. 12. 18:34
반응형
import platform
print(platform.system())
# windows
Windows
반응형