본문 바로가기

help11

Flutter 플러터를 iOS 앱에 추가하려고 할 때, 명령어 PhaseScriptExecution이 0이 아닌 종료 코드로 실패했습니다., Command PhaseScriptExecution failed with a nonzero exit code while trying to add Flutter to iOS app 질문 기존 앱에 플러터를 추가하려고 합니다. 따라서 제품 앱에서 작업하기 전에 새로운 Xcode 10 단일 보기 애플리케이션에서 시도해보았습니다. https://github.com/flutter/flutter/wiki/Add-Flutter-to-existing-apps에서 튜토리얼을 따라가다가 내 타겟의 빌드 단계에 실행 스크립트를 추가한 후에 멈춘 상태입니다. 다음과 같은 오류가 발생합니다: 오류: iphoneos/AFEiOS.build export TEMP_ROOT=/Users/dhavalkansara/Library/Developer/Xcode/DerivedData/AFEiOS-gctxucyuhlhesnfkbuxfswkozboo/Build/Intermediates.noindex export TOOLC.. 2023. 12. 15.
Python 각 서브플롯에 제목을 추가하는 방법, How to add a title to each subplot 질문 나는 여러 개의 서브플롯을 포함한 하나의 그림을 가지고 있습니다. fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k') fig.canvas.set_window_title('창 제목') # Axes 인스턴스를 반환합니다 ax = fig.add_subplot(311) ax2 = fig.add_subplot(312) ax3 = fig.add_subplot(313) 서브플롯에 제목을 추가하는 방법은 무엇인가요? fig.suptitle은 모든 그래프에 제목을 추가하며, ax.set_title()은 존재하지만 후자는 서브플롯에 제목을 추가하지 않습니다. 도움을 주셔서 감사합니다. 편집: set_title()에 대한 .. 2023. 11. 24.
Python 두 개의 중첩된 리스트의 교차점을 찾으세요., Find intersection of two nested lists? 질문 나는 두 개의 평면 리스트의 교차점을 얻는 방법을 알고 있습니다: b1 = [1,2,3,4,5,9,11,15] b2 = [4,5,6,7,8] b3 = [val for val in b1 if val in b2] 또는 def intersect(a, b): return list(set(a) & set(b)) print intersect(b1, b2) 하지만 중첩된 리스트의 교차점을 찾을 때 문제가 시작됩니다: c1 = [1, 6, 7, 10, 13, 28, 32, 41, 58, 63] c2 = [[13, 17, 18, 21, 32], [7, 11, 13, 14, 28], [1, 5, 6, 8, 15, 16]] 최종적으로 다음을 받고 싶습니다: c3 = [[13,32],[7,13,28],[1,6]] 이 문.. 2023. 11. 2.
Python 문자열.replace에 정규식을 입력하는 방법은 무엇인가요?, How to input a regex in string.replace? 질문 정규식 선언에 도움이 필요합니다. 입력은 다음과 같습니다: this is a paragraph with in between and then there are cases ... where the number ranges from 1-100. and there are many other lines in the txt files with such tags 필요한 출력은 다음과 같습니다: this is a paragraph with in between and then there are cases ... where the number ranges from 1-100. and there are many other lines in the txt files with such tags 다음을 시도해 보았습니다: #.. 2023. 10. 24.