-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathargparse.po
More file actions
1749 lines (1601 loc) · 60.9 KB
/
argparse.po
File metadata and controls
1749 lines (1601 loc) · 60.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2017, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-04-17 23:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
"Language-Team: Korean (https://python.flowdas.com)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.17.0\n"
#: ../../howto/argparse.rst:5
msgid "Argparse Tutorial"
msgstr "Argparse 자습서"
#: ../../howto/argparse.rst
msgid "author"
msgstr "저자"
#: ../../howto/argparse.rst:7
msgid "Tshepang Mbambo"
msgstr "Tshepang Mbambo"
#: ../../howto/argparse.rst:11
msgid ""
"This tutorial is intended to be a gentle introduction to :mod:`argparse`,"
" the recommended command-line parsing module in the Python standard "
"library."
msgstr "이 자습서는 파이썬 표준 라이브러리에서 권장하는 명령행 파싱 모듈인 :mod:`argparse` 에 대한 소개입니다."
#: ../../howto/argparse.rst:16
msgid ""
"The standard library includes two other libraries directly related to "
"command-line parameter processing: the lower level :mod:`optparse` module"
" (which may require more code to configure for a given application, but "
"also allows an application to request behaviors that ``argparse`` doesn't"
" support), and the very low level :mod:`getopt` (which specifically "
"serves as an equivalent to the :c:func:`!getopt` family of functions "
"available to C programmers). While neither of those modules is covered "
"directly in this guide, many of the core concepts in ``argparse`` first "
"originated in ``optparse``, so some aspects of this tutorial will also be"
" relevant to ``optparse`` users."
msgstr ""
#: ../../howto/argparse.rst:29
msgid "Concepts"
msgstr "개념"
#: ../../howto/argparse.rst:31
msgid ""
"Let's show the sort of functionality that we are going to explore in this"
" introductory tutorial by making use of the :command:`ls` command:"
msgstr ":command:`ls` 명령을 사용하여 이 입문서에서 다룰 기능들을 살펴봅시다:"
#: ../../howto/argparse.rst:34
msgid ""
"$ ls\n"
"cpython devguide prog.py pypy rm-unused-function.patch\n"
"$ ls pypy\n"
"ctypes_configure demo dotviewer include lib_pypy lib-python ...\n"
"$ ls -l\n"
"total 20\n"
"drwxr-xr-x 19 wena wena 4096 Feb 18 18:51 cpython\n"
"drwxr-xr-x 4 wena wena 4096 Feb 8 12:04 devguide\n"
"-rwxr-xr-x 1 wena wena 535 Feb 19 00:05 prog.py\n"
"drwxr-xr-x 14 wena wena 4096 Feb 7 00:59 pypy\n"
"-rw-r--r-- 1 wena wena 741 Feb 18 01:01 rm-unused-function.patch\n"
"$ ls --help\n"
"Usage: ls [OPTION]... [FILE]...\n"
"List information about the FILEs (the current directory by default).\n"
"Sort entries alphabetically if none of -cftuvSUX nor --sort is specified."
"\n"
"..."
msgstr ""
"$ ls\n"
"cpython devguide prog.py pypy rm-unused-function.patch\n"
"$ ls pypy\n"
"ctypes_configure demo dotviewer include lib_pypy lib-python ...\n"
"$ ls -l\n"
"total 20\n"
"drwxr-xr-x 19 wena wena 4096 Feb 18 18:51 cpython\n"
"drwxr-xr-x 4 wena wena 4096 Feb 8 12:04 devguide\n"
"-rwxr-xr-x 1 wena wena 535 Feb 19 00:05 prog.py\n"
"drwxr-xr-x 14 wena wena 4096 Feb 7 00:59 pypy\n"
"-rw-r--r-- 1 wena wena 741 Feb 18 01:01 rm-unused-function.patch\n"
"$ ls --help\n"
"Usage: ls [OPTION]... [FILE]...\n"
"List information about the FILEs (the current directory by default).\n"
"Sort entries alphabetically if none of -cftuvSUX nor --sort is specified."
"\n"
"..."
#: ../../howto/argparse.rst:53
msgid "A few concepts we can learn from the four commands:"
msgstr "네 가지 명령에서 배울 수 있는 몇 가지 개념들입니다:"
#: ../../howto/argparse.rst:55
msgid ""
"The :command:`ls` command is useful when run without any options at all. "
"It defaults to displaying the contents of the current directory."
msgstr ":command:`ls` 명령은 옵션 없이 실행될 때도 유용합니다. 기본적으로 현재 디렉터리의 내용을 표시합니다."
#: ../../howto/argparse.rst:58
msgid ""
"If we want beyond what it provides by default, we tell it a bit more. In "
"this case, we want it to display a different directory, ``pypy``. What we"
" did is specify what is known as a positional argument. It's named so "
"because the program should know what to do with the value, solely based "
"on where it appears on the command line. This concept is more relevant to"
" a command like :command:`cp`, whose most basic usage is ``cp SRC DEST``."
" The first position is *what you want copied,* and the second position is"
" *where you want it copied to*."
msgstr ""
"기본적으로 제공하는 것 이상으로 원한다면, 조금 더 말합니다. 이 경우에는 다른 디렉터리인 ``pypy`` 를 표시하기를 원합니다."
" 우리가 한 것은 위치 인자라고 알려진 것을 지정하는 것입니다. 프로그램이 명령행에 표시되는 위치를 기준으로 값을 어떻게 처리해야 "
"하는지를 알아야 하므로 이런 이름이 사용됩니다. 이 개념은 :command:`cp` 와 같은 명령에 더 적절합니다. 가장 기본적인 "
"사용법은 ``cp SRC DEST`` 입니다. 첫 번째 위치는 *복사하고자 하는 것* 이고 두 번째 위치는 *사본을 저장할 곳* "
"입니다."
#: ../../howto/argparse.rst:67
msgid ""
"Now, say we want to change behaviour of the program. In our example, we "
"display more info for each file instead of just showing the file names. "
"The ``-l`` in that case is known as an optional argument."
msgstr ""
"자, 프로그램의 행동을 바꾸고 싶다고 합시다. 이 예에서는 파일 이름만 표시하는 대신 각 파일에 대한 정보를 더 많이 표시합니다. "
"이 경우 ``-l`` 은 옵션 인자로 알려져 있습니다."
#: ../../howto/argparse.rst:71
msgid ""
"That's a snippet of the help text. It's very useful in that you can come "
"across a program you have never used before, and can figure out how it "
"works simply by reading its help text."
msgstr ""
"이것이 도움말 텍스트입니다. 이전에 사용해보지 않은 프로그램을 접했을 때 도움말 텍스트를 읽는 것만으로 작동하는 방식을 이해할 수 "
"있다는 점에서 매우 유용합니다."
#: ../../howto/argparse.rst:77
msgid "The basics"
msgstr "기본"
#: ../../howto/argparse.rst:79
msgid "Let us start with a very simple example which does (almost) nothing::"
msgstr "(거의) 아무것도 하지 않는 아주 간단한 예제로 시작합시다::"
#: ../../howto/argparse.rst:81
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.parse_args()"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.parse_args()"
#: ../../howto/argparse.rst:85 ../../howto/argparse.rst:193
#: ../../howto/argparse.rst:214
msgid "Following is a result of running the code:"
msgstr "다음은 코드를 실행한 결과입니다:"
#: ../../howto/argparse.rst:87
msgid ""
"$ python prog.py\n"
"$ python prog.py --help\n"
"usage: prog.py [-h]\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
"$ python prog.py --verbose\n"
"usage: prog.py [-h]\n"
"prog.py: error: unrecognized arguments: --verbose\n"
"$ python prog.py foo\n"
"usage: prog.py [-h]\n"
"prog.py: error: unrecognized arguments: foo"
msgstr ""
"$ python prog.py\n"
"$ python prog.py --help\n"
"usage: prog.py [-h]\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
"$ python prog.py --verbose\n"
"usage: prog.py [-h]\n"
"prog.py: error: unrecognized arguments: --verbose\n"
"$ python prog.py foo\n"
"usage: prog.py [-h]\n"
"prog.py: error: unrecognized arguments: foo"
#: ../../howto/argparse.rst:102 ../../howto/argparse.rst:259
#: ../../howto/argparse.rst:303
msgid "Here is what is happening:"
msgstr "일어난 일은 이렇습니다:"
#: ../../howto/argparse.rst:104
msgid ""
"Running the script without any options results in nothing displayed to "
"stdout. Not so useful."
msgstr "옵션 없이 스크립트를 실행하면 아무것도 표준 출력에 표시되지 않습니다. 별로 유용하지 않습니다."
#: ../../howto/argparse.rst:107
msgid ""
"The second one starts to display the usefulness of the :mod:`argparse` "
"module. We have done almost nothing, but already we get a nice help "
"message."
msgstr "두 번째는 :mod:`argparse` 모듈의 쓸모를 보여주기 시작합니다. 거의 아무것도 하지 않았지만 이미 도움말을 얻었습니다."
#: ../../howto/argparse.rst:110
msgid ""
"The ``--help`` option, which can also be shortened to ``-h``, is the only"
" option we get for free (i.e. no need to specify it). Specifying anything"
" else results in an error. But even then, we do get a useful usage "
"message, also for free."
msgstr ""
"``--help`` 옵션은, ``-h`` 로 단축할 수도 있습니다, 무료로 얻을 수 있는 유일한 옵션입니다 (즉, 지정할 필요가 "
"없습니다). 다른 값을 지정하면 오류가 발생합니다. 그러나 그때조차도 우리는 사용 안내를 얻습니다, 여전히 공짜입니다."
#: ../../howto/argparse.rst:117
msgid "Introducing Positional arguments"
msgstr "위치 인자 소개"
#: ../../howto/argparse.rst:119
msgid "An example::"
msgstr "예::"
#: ../../howto/argparse.rst:121
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"echo\")\n"
"args = parser.parse_args()\n"
"print(args.echo)"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"echo\")\n"
"args = parser.parse_args()\n"
"print(args.echo)"
#: ../../howto/argparse.rst:127
msgid "And running the code:"
msgstr "코드를 실행합니다:"
#: ../../howto/argparse.rst:129
msgid ""
"$ python prog.py\n"
"usage: prog.py [-h] echo\n"
"prog.py: error: the following arguments are required: echo\n"
"$ python prog.py --help\n"
"usage: prog.py [-h] echo\n"
"\n"
"positional arguments:\n"
" echo\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
"$ python prog.py foo\n"
"foo"
msgstr ""
"$ python prog.py\n"
"usage: prog.py [-h] echo\n"
"prog.py: error: the following arguments are required: echo\n"
"$ python prog.py --help\n"
"usage: prog.py [-h] echo\n"
"\n"
"positional arguments:\n"
" echo\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
"$ python prog.py foo\n"
"foo"
#: ../../howto/argparse.rst:145
msgid "Here is what's happening:"
msgstr "이런 일이 일어났습니다:"
#: ../../howto/argparse.rst:147
msgid ""
"We've added the :meth:`~ArgumentParser.add_argument` method, which is "
"what we use to specify which command-line options the program is willing "
"to accept. In this case, I've named it ``echo`` so that it's in line with"
" its function."
msgstr ""
":meth:`~ArgumentParser.add_argument` 메서드를 추가했습니다. 이 메서드는 프로그램이 받고 싶은 명령행 "
"옵션을 지정하기 위해 사용합니다. 이 경우 기능과 일치하도록 ``echo`` 라고 이름 붙였습니다."
#: ../../howto/argparse.rst:151
msgid "Calling our program now requires us to specify an option."
msgstr "이제 프로그램을 호출하려면 옵션을 지정해야 합니다."
#: ../../howto/argparse.rst:153
msgid ""
"The :meth:`~ArgumentParser.parse_args` method actually returns some data "
"from the options specified, in this case, ``echo``."
msgstr ""
":meth:`~ArgumentParser.parse_args` 메서드는 실제로 지정된 옵션으로부터 온 데이터를 돌려줍니다. 이 "
"경우에는 ``echo`` 입니다."
#: ../../howto/argparse.rst:156
msgid ""
"The variable is some form of 'magic' that :mod:`argparse` performs for "
"free (i.e. no need to specify which variable that value is stored in). "
"You will also notice that its name matches the string argument given to "
"the method, ``echo``."
msgstr ""
"변수는 :mod:`argparse` 이 공짜로 수행하는 일종의 '마법' 입니다 (즉, 값이 저장되는 변수를 지정할 필요가 "
"없습니다). 또한, 그 이름이 메서드에 주어진 문자열 인자 ``echo`` 와 일치함을 알 수 있습니다."
#: ../../howto/argparse.rst:161
msgid ""
"Note however that, although the help display looks nice and all, it "
"currently is not as helpful as it can be. For example we see that we got "
"``echo`` as a positional argument, but we don't know what it does, other "
"than by guessing or by reading the source code. So, let's make it a bit "
"more useful::"
msgstr ""
"그러나 도움말이 멋지게 보이지만, 현재로서는 가능한 최선이 아닙니다. 예를 들어 ``echo`` 가 위치 인자임을 볼 수 있지만, "
"추측하거나 소스 코드를 읽는 것 외에는 그것이 무엇을 하는지 모릅니다. 그럼 좀 더 유용하게 만들어 봅시다::"
#: ../../howto/argparse.rst:166
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"echo\", help=\"echo the string you use here\")\n"
"args = parser.parse_args()\n"
"print(args.echo)"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"echo\", help=\"echo the string you use here\")\n"
"args = parser.parse_args()\n"
"print(args.echo)"
#: ../../howto/argparse.rst:172
msgid "And we get:"
msgstr "그러면 이렇게 됩니다:"
#: ../../howto/argparse.rst:174
msgid ""
"$ python prog.py -h\n"
"usage: prog.py [-h] echo\n"
"\n"
"positional arguments:\n"
" echo echo the string you use here\n"
"\n"
"options:\n"
" -h, --help show this help message and exit"
msgstr ""
"$ python prog.py -h\n"
"usage: prog.py [-h] echo\n"
"\n"
"positional arguments:\n"
" echo echo the string you use here\n"
"\n"
"options:\n"
" -h, --help show this help message and exit"
#: ../../howto/argparse.rst:185
msgid "Now, how about doing something even more useful::"
msgstr "이제, 뭔가 더 쓸모있는 일을 하는 것은 어떻습니까::"
#: ../../howto/argparse.rst:187
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", help=\"display a square of a given "
"number\")\n"
"args = parser.parse_args()\n"
"print(args.square**2)"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", help=\"display a square of a given "
"number\")\n"
"args = parser.parse_args()\n"
"print(args.square**2)"
#: ../../howto/argparse.rst:195
msgid ""
"$ python prog.py 4\n"
"Traceback (most recent call last):\n"
" File \"prog.py\", line 5, in <module>\n"
" print(args.square**2)\n"
"TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'"
msgstr ""
"$ python prog.py 4\n"
"Traceback (most recent call last):\n"
" File \"prog.py\", line 5, in <module>\n"
" print(args.square**2)\n"
"TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'"
#: ../../howto/argparse.rst:203
msgid ""
"That didn't go so well. That's because :mod:`argparse` treats the options"
" we give it as strings, unless we tell it otherwise. So, let's tell "
":mod:`argparse` to treat that input as an integer::"
msgstr ""
"잘 안됐습니다. 우리가 달리 지시하지 않는다면, :mod:`argparse` 는 우리가 준 옵션들을 문자열로 취급하기 때문입니다. "
"그럼, :mod:`argparse` 에게 그 입력을 정수로 취급하라고 알려줍시다::"
#: ../../howto/argparse.rst:207
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", help=\"display a square of a given "
"number\",\n"
" type=int)\n"
"args = parser.parse_args()\n"
"print(args.square**2)"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", help=\"display a square of a given "
"number\",\n"
" type=int)\n"
"args = parser.parse_args()\n"
"print(args.square**2)"
#: ../../howto/argparse.rst:216
msgid ""
"$ python prog.py 4\n"
"16\n"
"$ python prog.py four\n"
"usage: prog.py [-h] square\n"
"prog.py: error: argument square: invalid int value: 'four'"
msgstr ""
"$ python prog.py 4\n"
"16\n"
"$ python prog.py four\n"
"usage: prog.py [-h] square\n"
"prog.py: error: argument square: invalid int value: 'four'"
#: ../../howto/argparse.rst:224
msgid ""
"That went well. The program now even helpfully quits on bad illegal input"
" before proceeding."
msgstr "잘 됩니다. 이제 이 프로그램은 잘못된 입력이 올 때 더 진행하지 않고 종료하기조차 합니다."
#: ../../howto/argparse.rst:229
msgid "Introducing Optional arguments"
msgstr "옵션 인자 소개"
#: ../../howto/argparse.rst:231
msgid ""
"So far we have been playing with positional arguments. Let us have a look"
" on how to add optional ones::"
msgstr "지금까지 우리는 위치 인자를 다뤘습니다. 옵션 인자를 추가하는 방법에 대해 살펴봅시다::"
#: ../../howto/argparse.rst:234
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"--verbosity\", help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"if args.verbosity:\n"
" print(\"verbosity turned on\")"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"--verbosity\", help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"if args.verbosity:\n"
" print(\"verbosity turned on\")"
#: ../../howto/argparse.rst:241 ../../howto/argparse.rst:287
#: ../../howto/argparse.rst:403 ../../howto/argparse.rst:437
msgid "And the output:"
msgstr "출력은 이렇습니다:"
#: ../../howto/argparse.rst:243
msgid ""
"$ python prog.py --verbosity 1\n"
"verbosity turned on\n"
"$ python prog.py\n"
"$ python prog.py --help\n"
"usage: prog.py [-h] [--verbosity VERBOSITY]\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" --verbosity VERBOSITY\n"
" increase output verbosity\n"
"$ python prog.py --verbosity\n"
"usage: prog.py [-h] [--verbosity VERBOSITY]\n"
"prog.py: error: argument --verbosity: expected one argument"
msgstr ""
"$ python prog.py --verbosity 1\n"
"verbosity turned on\n"
"$ python prog.py\n"
"$ python prog.py --help\n"
"usage: prog.py [-h] [--verbosity VERBOSITY]\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" --verbosity VERBOSITY\n"
" increase output verbosity\n"
"$ python prog.py --verbosity\n"
"usage: prog.py [-h] [--verbosity VERBOSITY]\n"
"prog.py: error: argument --verbosity: expected one argument"
#: ../../howto/argparse.rst:261
msgid ""
"The program is written so as to display something when ``--verbosity`` is"
" specified and display nothing when not."
msgstr ""
"이 프로그램은 ``--verbosity`` 가 지정되었을 때 어떤 것을 표시하고 그렇지 않을 때는 아무것도 표시하지 않도록 "
"작성되었습니다."
#: ../../howto/argparse.rst:264
msgid ""
"To show that the option is actually optional, there is no error when "
"running the program without it. Note that by default, if an optional "
"argument isn't used, the relevant variable, in this case "
"``args.verbosity``, is given ``None`` as a value, which is the reason it "
"fails the truth test of the :keyword:`if` statement."
msgstr ""
"옵션이 실제로 선택 사항임을 확인하기 위해, 이 옵션을 사용하지 않고 프로그램을 실행할 때 오류가 없습니다. 기본적으로 옵션 인자가"
" 사용되지 않는다면 관련 변수 (이 경우 ``args.verbosity``)는 값으로 ``None`` 이 주어집니다. 이 때문에 "
":keyword:`if` 문의 논리값 검사가 실패합니다."
#: ../../howto/argparse.rst:270
msgid "The help message is a bit different."
msgstr "도움말 메시지가 약간 달라졌습니다."
#: ../../howto/argparse.rst:272
msgid ""
"When using the ``--verbosity`` option, one must also specify some value, "
"any value."
msgstr "``--verbosity`` 옵션을 사용할 때, 어떤 값을 지정해야 합니다. 어떤 값이건 상관없습니다."
#: ../../howto/argparse.rst:275
msgid ""
"The above example accepts arbitrary integer values for ``--verbosity``, "
"but for our simple program, only two values are actually useful, ``True``"
" or ``False``. Let's modify the code accordingly::"
msgstr ""
"위의 예제는 ``--verbosity`` 에 임의의 정숫값을 허용하지만, 우리의 간단한 프로그램에서는 실제로 ``True`` 또는 "
"``False`` 두 값만 쓸모 있습니다. 그것에 맞게 코드를 수정합시다::"
#: ../../howto/argparse.rst:279
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"--verbose\", help=\"increase output verbosity\",\n"
" action=\"store_true\")\n"
"args = parser.parse_args()\n"
"if args.verbose:\n"
" print(\"verbosity turned on\")"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"--verbose\", help=\"increase output verbosity\",\n"
" action=\"store_true\")\n"
"args = parser.parse_args()\n"
"if args.verbose:\n"
" print(\"verbosity turned on\")"
#: ../../howto/argparse.rst:289
msgid ""
"$ python prog.py --verbose\n"
"verbosity turned on\n"
"$ python prog.py --verbose 1\n"
"usage: prog.py [-h] [--verbose]\n"
"prog.py: error: unrecognized arguments: 1\n"
"$ python prog.py --help\n"
"usage: prog.py [-h] [--verbose]\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" --verbose increase output verbosity"
msgstr ""
"$ python prog.py --verbose\n"
"verbosity turned on\n"
"$ python prog.py --verbose 1\n"
"usage: prog.py [-h] [--verbose]\n"
"prog.py: error: unrecognized arguments: 1\n"
"$ python prog.py --help\n"
"usage: prog.py [-h] [--verbose]\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" --verbose increase output verbosity"
#: ../../howto/argparse.rst:305
msgid ""
"The option is now more of a flag than something that requires a value. We"
" even changed the name of the option to match that idea. Note that we now"
" specify a new keyword, ``action``, and give it the value "
"``\"store_true\"``. This means that, if the option is specified, assign "
"the value ``True`` to ``args.verbose``. Not specifying it implies "
"``False``."
msgstr ""
"이 옵션은 이제 값을 요구하는 것이 아니라 플래그입니다. 이 개념과 일치하도록 옵션의 이름을 변경하기까지 했습니다. 새로운 키워드 "
"``action`` 을 지정하고, ``\"store_true\"`` 값을 지정했습니다. 이것은, 옵션이 지정되면 "
"``args.verbose`` 에 값 ``True`` 를 대입하라는 뜻입니다. 지정하지 않으면 묵시적으로 ``False`` 입니다."
#: ../../howto/argparse.rst:312
msgid ""
"It complains when you specify a value, in true spirit of what flags "
"actually are."
msgstr "값을 지정하면 불평하는데, 플래그의 정의를 따르고 있습니다."
#: ../../howto/argparse.rst:315
msgid "Notice the different help text."
msgstr "도움말 텍스트가 바뀐 것을 확인하십시오."
#: ../../howto/argparse.rst:319
msgid "Short options"
msgstr "짧은 옵션"
#: ../../howto/argparse.rst:321
msgid ""
"If you are familiar with command line usage, you will notice that I "
"haven't yet touched on the topic of short versions of the options. It's "
"quite simple::"
msgstr "명령행 사용법에 익숙하다면 짧은 옵션 버전에 관한 내용을 아직 다루지 않았음을 알 수 있을 겁니다. 아주 간단합니다::"
#: ../../howto/argparse.rst:325
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"-v\", \"--verbose\", help=\"increase output "
"verbosity\",\n"
" action=\"store_true\")\n"
"args = parser.parse_args()\n"
"if args.verbose:\n"
" print(\"verbosity turned on\")"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"-v\", \"--verbose\", help=\"increase output "
"verbosity\",\n"
" action=\"store_true\")\n"
"args = parser.parse_args()\n"
"if args.verbose:\n"
" print(\"verbosity turned on\")"
#: ../../howto/argparse.rst:333
msgid "And here goes:"
msgstr "그러면 이렇게 됩니다:"
#: ../../howto/argparse.rst:335
msgid ""
"$ python prog.py -v\n"
"verbosity turned on\n"
"$ python prog.py --help\n"
"usage: prog.py [-h] [-v]\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" -v, --verbose increase output verbosity"
msgstr ""
"$ python prog.py -v\n"
"verbosity turned on\n"
"$ python prog.py --help\n"
"usage: prog.py [-h] [-v]\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" -v, --verbose increase output verbosity"
#: ../../howto/argparse.rst:346
msgid "Note that the new ability is also reflected in the help text."
msgstr "새로운 기능은 도움말 텍스트에도 반영됩니다."
#: ../../howto/argparse.rst:350
msgid "Combining Positional and Optional arguments"
msgstr "위치 및 옵션 인자 결합하기"
#: ../../howto/argparse.rst:352
msgid "Our program keeps growing in complexity::"
msgstr "프로그램이 점점 복잡해지고 있습니다::"
#: ../../howto/argparse.rst:354
#, python-brace-format
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", type=int,\n"
" help=\"display a square of a given number\")\n"
"parser.add_argument(\"-v\", \"--verbose\", action=\"store_true\",\n"
" help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"answer = args.square**2\n"
"if args.verbose:\n"
" print(f\"the square of {args.square} equals {answer}\")\n"
"else:\n"
" print(answer)"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", type=int,\n"
" help=\"display a square of a given number\")\n"
"parser.add_argument(\"-v\", \"--verbose\", action=\"store_true\",\n"
" help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"answer = args.square**2\n"
"if args.verbose:\n"
" print(f\"the square of {args.square} equals {answer}\")\n"
"else:\n"
" print(answer)"
#: ../../howto/argparse.rst:367
msgid "And now the output:"
msgstr "이제 출력은 이렇게 됩니다:"
#: ../../howto/argparse.rst:369
msgid ""
"$ python prog.py\n"
"usage: prog.py [-h] [-v] square\n"
"prog.py: error: the following arguments are required: square\n"
"$ python prog.py 4\n"
"16\n"
"$ python prog.py 4 --verbose\n"
"the square of 4 equals 16\n"
"$ python prog.py --verbose 4\n"
"the square of 4 equals 16"
msgstr ""
"$ python prog.py\n"
"usage: prog.py [-h] [-v] square\n"
"prog.py: error: the following arguments are required: square\n"
"$ python prog.py 4\n"
"16\n"
"$ python prog.py 4 --verbose\n"
"the square of 4 equals 16\n"
"$ python prog.py --verbose 4\n"
"the square of 4 equals 16"
#: ../../howto/argparse.rst:381
msgid "We've brought back a positional argument, hence the complaint."
msgstr "위치 인자를 다시 도입했기 때문에, 불평합니다."
#: ../../howto/argparse.rst:383
msgid "Note that the order does not matter."
msgstr "순서는 중요하지 않습니다."
#: ../../howto/argparse.rst:385
msgid ""
"How about we give this program of ours back the ability to have multiple "
"verbosity values, and actually get to use them::"
msgstr "이 프로그램에 여러 상세도를 지정할 수 있도록 하는 능력을 다시 부여하고, 실제로 그것을 사용하는 것은 어떨까요::"
#: ../../howto/argparse.rst:388
#, python-brace-format
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", type=int,\n"
" help=\"display a square of a given number\")\n"
"parser.add_argument(\"-v\", \"--verbosity\", type=int,\n"
" help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"answer = args.square**2\n"
"if args.verbosity == 2:\n"
" print(f\"the square of {args.square} equals {answer}\")\n"
"elif args.verbosity == 1:\n"
" print(f\"{args.square}^2 == {answer}\")\n"
"else:\n"
" print(answer)"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", type=int,\n"
" help=\"display a square of a given number\")\n"
"parser.add_argument(\"-v\", \"--verbosity\", type=int,\n"
" help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"answer = args.square**2\n"
"if args.verbosity == 2:\n"
" print(f\"the square of {args.square} equals {answer}\")\n"
"elif args.verbosity == 1:\n"
" print(f\"{args.square}^2 == {answer}\")\n"
"else:\n"
" print(answer)"
#: ../../howto/argparse.rst:405
msgid ""
"$ python prog.py 4\n"
"16\n"
"$ python prog.py 4 -v\n"
"usage: prog.py [-h] [-v VERBOSITY] square\n"
"prog.py: error: argument -v/--verbosity: expected one argument\n"
"$ python prog.py 4 -v 1\n"
"4^2 == 16\n"
"$ python prog.py 4 -v 2\n"
"the square of 4 equals 16\n"
"$ python prog.py 4 -v 3\n"
"16"
msgstr ""
"$ python prog.py 4\n"
"16\n"
"$ python prog.py 4 -v\n"
"usage: prog.py [-h] [-v VERBOSITY] square\n"
"prog.py: error: argument -v/--verbosity: expected one argument\n"
"$ python prog.py 4 -v 1\n"
"4^2 == 16\n"
"$ python prog.py 4 -v 2\n"
"the square of 4 equals 16\n"
"$ python prog.py 4 -v 3\n"
"16"
#: ../../howto/argparse.rst:419
msgid ""
"These all look good except the last one, which exposes a bug in our "
"program. Let's fix it by restricting the values the ``--verbosity`` "
"option can accept::"
msgstr ""
"우리 프로그램의 버그를 드러내는 마지막 것을 제외하고는 그럴듯해 보입니다. ``--verbosity`` 옵션이 받아들일 수 있는 "
"값을 제한해서 고쳐봅시다::"
#: ../../howto/argparse.rst:422
#, python-brace-format
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", type=int,\n"
" help=\"display a square of a given number\")\n"
"parser.add_argument(\"-v\", \"--verbosity\", type=int, choices=[0, 1, 2],"
"\n"
" help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"answer = args.square**2\n"
"if args.verbosity == 2:\n"
" print(f\"the square of {args.square} equals {answer}\")\n"
"elif args.verbosity == 1:\n"
" print(f\"{args.square}^2 == {answer}\")\n"
"else:\n"
" print(answer)"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", type=int,\n"
" help=\"display a square of a given number\")\n"
"parser.add_argument(\"-v\", \"--verbosity\", type=int, choices=[0, 1, 2],"
"\n"
" help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"answer = args.square**2\n"
"if args.verbosity == 2:\n"
" print(f\"the square of {args.square} equals {answer}\")\n"
"elif args.verbosity == 1:\n"
" print(f\"{args.square}^2 == {answer}\")\n"
"else:\n"
" print(answer)"
#: ../../howto/argparse.rst:439
#, python-brace-format
msgid ""
"$ python prog.py 4 -v 3\n"
"usage: prog.py [-h] [-v {0,1,2}] square\n"
"prog.py: error: argument -v/--verbosity: invalid choice: 3 (choose from "
"0, 1, 2)\n"
"$ python prog.py 4 -h\n"
"usage: prog.py [-h] [-v {0,1,2}] square\n"
"\n"
"positional arguments:\n"
" square display a square of a given number\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" -v, --verbosity {0,1,2}\n"
" increase output verbosity"
msgstr ""
"$ python prog.py 4 -v 3\n"
"usage: prog.py [-h] [-v {0,1,2}] square\n"
"prog.py: error: argument -v/--verbosity: invalid choice: 3 (choose from "
"0, 1, 2)\n"
"$ python prog.py 4 -h\n"
"usage: prog.py [-h] [-v {0,1,2}] square\n"
"\n"
"positional arguments:\n"
" square display a square of a given number\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" -v, --verbosity {0,1,2}\n"
" increase output verbosity"
#: ../../howto/argparse.rst:455
msgid ""
"Note that the change also reflects both in the error message as well as "
"the help string."
msgstr "변경 내용은 오류 메시지와 도움말 문자열에도 반영됩니다."
#: ../../howto/argparse.rst:458
msgid ""
"Now, let's use a different approach of playing with verbosity, which is "
"pretty common. It also matches the way the CPython executable handles its"
" own verbosity argument (check the output of ``python --help``)::"
msgstr ""
"이제 상세도를 다루는 다른 접근법을 사용해 봅시다, 이 방법은 꽤 널리 사용됩니다. 또한, 이 방법은 CPython 실행 파일이 "
"자신의 상세도를 처리하는 방식과도 일치합니다 (``python --help`` 의 결과를 확인하십시오)::"
#: ../../howto/argparse.rst:462
#, python-brace-format
msgid ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", type=int,\n"
" help=\"display the square of a given number\")\n"
"parser.add_argument(\"-v\", \"--verbosity\", action=\"count\",\n"
" help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"answer = args.square**2\n"
"if args.verbosity == 2:\n"
" print(f\"the square of {args.square} equals {answer}\")\n"
"elif args.verbosity == 1:\n"
" print(f\"{args.square}^2 == {answer}\")\n"
"else:\n"
" print(answer)"
msgstr ""
"import argparse\n"
"parser = argparse.ArgumentParser()\n"
"parser.add_argument(\"square\", type=int,\n"
" help=\"display the square of a given number\")\n"
"parser.add_argument(\"-v\", \"--verbosity\", action=\"count\",\n"
" help=\"increase output verbosity\")\n"
"args = parser.parse_args()\n"
"answer = args.square**2\n"
"if args.verbosity == 2:\n"
" print(f\"the square of {args.square} equals {answer}\")\n"
"elif args.verbosity == 1:\n"
" print(f\"{args.square}^2 == {answer}\")\n"
"else:\n"
" print(answer)"
#: ../../howto/argparse.rst:477
msgid ""
"We have introduced another action, \"count\", to count the number of "
"occurrences of specific options."
msgstr "특정 옵션을 지정한 횟수를 계산하기 위해 \"count\" 라는 또 다른 액션을 도입했습니다."
#: ../../howto/argparse.rst:481
msgid ""
"$ python prog.py 4\n"
"16\n"
"$ python prog.py 4 -v\n"
"4^2 == 16\n"
"$ python prog.py 4 -vv\n"
"the square of 4 equals 16\n"
"$ python prog.py 4 --verbosity --verbosity\n"
"the square of 4 equals 16\n"
"$ python prog.py 4 -v 1\n"
"usage: prog.py [-h] [-v] square\n"
"prog.py: error: unrecognized arguments: 1\n"
"$ python prog.py 4 -h\n"
"usage: prog.py [-h] [-v] square\n"
"\n"
"positional arguments:\n"
" square display a square of a given number\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" -v, --verbosity increase output verbosity\n"
"$ python prog.py 4 -vvv\n"
"16"
msgstr ""
"$ python prog.py 4\n"
"16\n"
"$ python prog.py 4 -v\n"
"4^2 == 16\n"
"$ python prog.py 4 -vv\n"
"the square of 4 equals 16\n"
"$ python prog.py 4 --verbosity --verbosity\n"
"the square of 4 equals 16\n"
"$ python prog.py 4 -v 1\n"
"usage: prog.py [-h] [-v] square\n"
"prog.py: error: unrecognized arguments: 1\n"
"$ python prog.py 4 -h\n"
"usage: prog.py [-h] [-v] square\n"
"\n"
"positional arguments:\n"
" square display a square of a given number\n"
"\n"
"options:\n"
" -h, --help show this help message and exit\n"
" -v, --verbosity increase output verbosity\n"
"$ python prog.py 4 -vvv\n"
"16"
#: ../../howto/argparse.rst:506
msgid ""
"Yes, it's now more of a flag (similar to ``action=\"store_true\"``) in "
"the previous version of our script. That should explain the complaint."
msgstr ""
"예, 이제 이전 버전의 스크립트처럼 (``action=\"store_true\"`` 와 유사하게) 플래그가 되었습니다. 출력되는 "
"불평이 설명됩니다."
#: ../../howto/argparse.rst:509
msgid "It also behaves similar to \"store_true\" action."
msgstr "또한 \"store_true\" 액션과 비슷하게 작동하기도 합니다."
#: ../../howto/argparse.rst:511
msgid ""