반응형
다음과 같은 코드를 작성하면
import platform
print(platform.architecture())
아래와 같은 결과를 얻을 수 있다.0
('64bit', 'WindowsPE')
내 파이썬 개발환경은 64bit임을 알 수 있다.
반응형
다음과 같은 코드를 작성하면
import platform
print(platform.architecture())
아래와 같은 결과를 얻을 수 있다.0
('64bit', 'WindowsPE')
내 파이썬 개발환경은 64bit임을 알 수 있다.
댓글