본문 바로가기

File9

Python 딕셔너리를 JSON 파일로 저장하는 방법은 무엇인가요?, How to dump a dict to a JSON file? 질문 나는 다음과 같은 딕셔너리를 가지고 있습니다: sample = {'ObjectInterpolator': 1629, 'PointInterpolator': 1675, 'RectangleInterpolator': 2042} 나는 아래와 같이 딕셔너리를 JSON 파일로 덤프하는 방법을 알 수 없습니다: { "name": "interpolator", "children": [ {"name": "ObjectInterpolator", "size": 1629}, {"name": "PointInterpolator", "size": 1675}, {"name": "RectangleInterpolator", "size": 2042} ] } 이를 위해 파이썬적인 방법이 있을까요? 나는 d3 트리맵을 생성하고자 하는 것을 추.. 2023. 11. 28.
Python sys.stdout.write와 print의 차이점은 무엇인가요?, The difference between sys.stdout.write and print? 질문 어떤 상황에서 sys.stdout.write()가 print보다 선호될까요? (예시: 더 나은 성능; 더 의미 있는 코드) 답변 print은 주어진 객체의 write 함수를 호출하고 입력을 형식화하는 역할을 하는 간단한 래퍼입니다. 기본적으로 이 객체는 sys.stdout입니다. 그러나 "chevron" 형태를 사용하여 파일을 전달할 수도 있습니다. 예를 들면: print >> open('file.txt', 'w'), 'Hello', 'World', 2+3 참조: https://docs.python.org/2/reference/simple_stmts.html?highlight=print#the-print-statement Python 3.x에서는 print가 함수가 되지만, file 인자를 사용하여.. 2023. 10. 16.
Python 파이썬에서 .mat 파일을 읽기, Read .mat files in Python 질문 파이썬에서 이진 MATLAB .mat 파일을 읽을 수 있을까요? SciPy에는 .mat 파일을 읽는 것을 지원한다는 것을 알았지만, 제가는 성공하지 못했습니다. SciPy 버전 0.7.0을 설치했지만, loadmat() 메서드를 찾을 수 없습니다. 답변 중요한 것은 가져와야 합니다, import scipy.io... import scipy.io mat = scipy.io.loadmat('file.mat') 2023. 9. 19.
Python 파이썬 오류 "ImportError: 모듈이름이 없음", Python error "ImportError: No module named" 질문 파이썬은 로컬 디렉토리에 설치되어 있습니다. 저의 디렉토리 트리는 다음과 같습니다: (로컬 디렉토리)/site-packages/toolkit/interface.py 제 코드는 여기에 있습니다: (로컬 디렉토리)/site-packages/toolkit/examples/mountain.py 예제를 실행하기 위해 python mountain.py라고 작성하고, 코드 안에는 다음이 있습니다: from toolkit.interface import interface 그리고 다음과 같은 오류가 발생합니다: Traceback (most recent call last): File "mountain.py", line 28, in ? from toolkit.interface import interface ImportE.. 2023. 9. 10.