Module18 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. Python 판다스 데이터프레임의 열에서 NaN 값을 0으로 대체하는 방법은 무엇인가요?, How to replace NaN values by Zeroes in a column of a Pandas Dataframe? 질문 나는 아래와 같은 Pandas Dataframe을 가지고 있습니다: itm Date Amount 67 420 2012-09-30 00:00:00 65211 68 421 2012-09-09 00:00:00 29424 69 421 2012-09-16 00:00:00 29877 70 421 2012-09-23 00:00:00 30990 71 421 2012-09-30 00:00:00 61303 72 485 2012-09-09 00:00:00 71781 73 485 2012-09-16 00:00:00 NaN 74 485 2012-09-23 00:00:00 11072 75 485 2012-09-30 00:00:00 113702 76 489 2012-09-09 00:00:00 64731 77 489 2012-.. 2023. 9. 8. Python3에서 StringIO를 사용하는 방법은 무엇인가요?, How to use StringIO in Python3? 질문 나는 Python 3.2.1을 사용하고 StringIO 모듈을 가져올 수 없습니다. io.StringIO를 사용하고 작동하지만 numpy의 genfromtxt와 함께 사용할 수 없습니다: x="1 3\n 4.5 8" numpy.genfromtxt(io.StringIO(x)) 다음 오류가 발생합니다: TypeError: Can't convert 'bytes' object to str implicitly import StringIO를 작성하면 다음과 같이 나타납니다: ImportError: No module named 'StringIO' 답변 제가 import StringIO를 작성하면 해당 모듈이 없다고 나옵니다. 파이썬 3.0에서 새로운 내용에 따르면: StringIO와 cStringIO 모듈은 사.. 2023. 9. 8. Python 간단한 argparse 예제를 원합니다: 1개의 인자, 3개의 결과, Simple argparse example wanted: 1 argument, 3 results 질문 The documentation for the argparse python module, while excellent I'm sure, is too much for my tiny beginner brain to grasp right now. I don't need to do math on the command line or meddle with formatting lines on the screen or change option characters. All I want to do is "If arg is A, do this, if B do that, if none of the above show help and quit". 답변 이렇게 argparse를 사용하여 다중 인수로 수행할 수 있습니다: p.. 2023. 8. 1. 이전 1 2 3 4 5 다음