argparse에서 목록을 인수로 전달
argparse를 사용하여 명령줄 프로그램에 목록을 인수로 전달하려고 할 때 필수입니다. 파서 내에서 목록을 나타내는 데 사용할 수 있는 옵션을 이해하는 것이 좋습니다.
권장하지 않음: type=list 사용
argparse와 함께 type=list를 사용하면 잘못된 결과가 발생할 수 있으므로 피하세요. 결과. 원하는 요소가 포함된 단일 목록이 아닌 목록의 목록을 반환합니다.
필수 인수에 nargs 사용
nargs 매개변수를 사용하면 요소 수를 지정할 수 있습니다. 옵션이 허용하는 인수입니다. 목록을 필수 인수로 전달하려면 다음을 사용하세요.
<code class="python">parser.add_argument('-l', '--list', nargs='+', help='Set flag', required=True)</code>
선택적 인수에는 action='append' 사용
선택적 인수에는 action='append 사용 '를 사용하여 인수의 여러 인스턴스를 제공할 수 있습니다.
<code class="python">parser.add_argument('-l', '--list', action='append', help='Set flag')</code>
이러한 옵션을 호출하기 위한 구문
nargs의 경우 인수는 공백 없이 함께 제공되어야 합니다. :
<code class="bash">python test.py -l 12345678</code>
action='append'의 경우 인수는 다음과 같이 여러 번 제공되어야 합니다.
<code class="bash">python test.py -l 1234 -l 5678</code>
추가 고려 사항
- 명령줄에서 argparse에 인수를 전달할 때 따옴표를 사용하지 마세요.
- 목록 요소를 유형 변환(예: 정수로)하려면 nargs 내에서 type=int를 사용하세요. 설정.
- nargs with 또는 *는 각각 1개 이상의 인수를 허용하고 ? 0 또는 1개의 인수를 허용합니다. 특정 수의 인수에 대해서는 nargs에 정수를 제공하십시오.
위 내용은 argparse를 사용하여 목록을 명령줄 프로그램에 인수로 전달하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

forhandlinglargedatasetsinpython, usenumpyarraysforbetterperformance.1) numpyarraysarememory-effic andfasterfornumericaloperations.2) leveragevectorization foredtimecomplexity.4) managemoryusage withorfications data

inpython, listsusedyammoryAllocation과 함께 할당하고, whilempyarraysallocatefixedMemory.1) listsAllocatemememorythanneedInitiality.

Inpython, youcansspecthedatatypeyfelemeremodelerernspant.1) usenpynernrump.1) usenpynerp.dloatp.ploatm64, 포모 선례 전분자.

numpyissentialfornumericalcomputinginpythonduetoitsspeed, memory-efficiency 및 comperniveMathematicaticaltions

contiguousUousUousUlorAllocationScrucialForraysbecauseItAllowsOfficationAndFastElementAccess.1) ItenableSconstantTimeAccess, o (1), DuetodirectAddressCalculation.2) Itimprovesceeffiency theMultipleementFetchespercacheline.3) Itsimplififiesmomorym

slicepaythonlistisdoneusingthesyntaxlist [start : step : step] .here'showitworks : 1) startistheindexofthefirstelementtoinclude.2) stopistheindexofthefirstelemement.3) stepisincrementbetwetweentractionsoftortionsoflists

NumpyAllowsForVariousOperationsOnArrays : 1) BasicArithmeticLikeadDition, Subtraction, A 및 Division; 2) AdvancedOperationsSuchasmatrixmultiplication; 3) extrayintondsfordatamanipulation; 5) Ag

Arraysinpython, 특히 Stroughnumpyandpandas, areestentialfordataanalysis, setingspeedandefficiency


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 Linux 새 버전
SublimeText3 Linux 최신 버전

VSCode Windows 64비트 다운로드
Microsoft에서 출시한 강력한 무료 IDE 편집기

Eclipse용 SAP NetWeaver 서버 어댑터
Eclipse를 SAP NetWeaver 애플리케이션 서버와 통합합니다.

mPDF
mPDF는 UTF-8로 인코딩된 HTML에서 PDF 파일을 생성할 수 있는 PHP 라이브러리입니다. 원저자인 Ian Back은 자신의 웹 사이트에서 "즉시" PDF 파일을 출력하고 다양한 언어를 처리하기 위해 mPDF를 작성했습니다. HTML2FPDF와 같은 원본 스크립트보다 유니코드 글꼴을 사용할 때 속도가 느리고 더 큰 파일을 생성하지만 CSS 스타일 등을 지원하고 많은 개선 사항이 있습니다. RTL(아랍어, 히브리어), CJK(중국어, 일본어, 한국어)를 포함한 거의 모든 언어를 지원합니다. 중첩된 블록 수준 요소(예: P, DIV)를 지원합니다.