error46 Flutter 'List<widget>' 요소 유형은 'Widget' 리스트 유형에 할당할 수 없습니다., the element type 'List<widget>' can't be assigned to the list type 'Widget' 질문 데이터를 그리드뷰에 for 루프를 사용하여 추가하려고 시도하고 있지만 오류가 발생합니다. 다음은 컴포넌트의 코드입니다. return new GridView.count( crossAxisCount: 2, padding: const EdgeInsets.all(10.0), crossAxisSpacing: 10.0, mainAxisSpacing: 10.0, children: [getList()], ); getList() 코드 List getList() { List childs = []; for (var i = 0; i < 10; i++) { childs.add(new ListItem('abcd ' + $i)); } return childs; } 하지만 컴파일 시간 오류가 표시됩니다. 요소 유형 'List'.. 2023. 9. 21. Python 'pip'는 내부 또는 외부 명령으로 인식되지 않습니다., 'pip' is not recognized as an internal or external command 질문 내 컴퓨터에 Django를 설치하려고 할 때 이상한 오류가 발생합니다. 다음은 명령 줄에 입력한 시퀀스입니다: C:\Python34> python get-pip.py Requirement already up-to-date: pip in c:\python34\lib\site-packages Cleaning up... C:\Python34> pip install Django 'pip'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램 또는 배치 파일이 아닙니다. C:\Python34> lib\site-packages\pip install Django 'lib\site-packages\pip'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램 또는 배치 파일이 아닙니다. 이것이 어떤 원인인가요.. 2023. 9. 19. Python 큰 파일을 한 줄씩 읽는 방법은 무엇인가요?, How to read a large file - line by line? 질문 전체 파일의 각 줄을 반복하고 싶습니다. 이를 위해 전체 파일을 읽어 리스트에 저장한 다음 관심 있는 줄을 처리합니다. 이 방법은 많은 메모리를 사용하므로 다른 대안을 찾고 있습니다. 지금까지 작성한 코드: for each_line in fileinput.input(input_file): do_something(each_line) for each_line_again in fileinput.input(input_file): do_something(each_line_again) 이 코드를 실행하면 오류 메시지가 표시됩니다: device active. 어떤 제안이 있나요? 목적은 각 줄에 대해 모든 다른 줄과 Levenshtein 거리를 계산하는 것입니다. 2022년 11월 수정: 이 질문보다 8개월 뒤.. 2023. 9. 13. 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. 이전 1 2 3 4 5 6 7 8 ··· 12 다음