티스토리 뷰
참고 :
[Python] platform - Access to underlying platform's identifying data
>>> import platform
>>> platform.architecture()
('64bit', 'WindowsPE')
>>> platform.machine()
'AMD64'
>>> platform.platform()
'Windows-10-10.0.17134-SP0'
>>> platform.system()
'Windows'
>>> platform.version()
'10.0.17134'
>>> platform.release()
'10'
'Series' 카테고리의 다른 글
| Set C++ Standard Option [Intel Parallel Studio] (0) | 2018.06.30 |
|---|---|
| Set C++ Standard Option [Visual Studio] (0) | 2018.06.30 |
| Detect Windows Architecture [C++] IsWow64Process SYSTEM_INFO GetNativeSystemInfo (0) | 2018.06.25 |
| Detect Windows Architecture [C++] CString.GetEnvironmentVariable (0) | 2018.06.25 |
| Detect Windows Architecture [C++] GetEnvironmentVariable (0) | 2018.06.25 |