We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57811ce commit 69e49ffCopy full SHA for 69e49ff
1 file changed
Level_06/README.md
@@ -0,0 +1,18 @@
1
+# Level 6 Aufgaben
2
+
3
+## Aufgabe 1 (Monty Python)
4
5
+Passe deine Lösung aus Level 4 so an, dass:
6
+ * alle Dateinamen als Parameter auf der Kommandozeile übergeben werden können
7
+ * alle Befehle in einem Programm sind
8
+ * `argparse` dabei verwendet wird
9
10
+Wenn du keine eigene Lösung hast, kannst du auch unsere Lösung von Level 4 benutzen.
11
+Aufrufbar sein soll das Programm am Ende wie folgt:
12
13
+```bash
14
+python3 monty.py words --input monty.txt --output words.txt
15
+python3 monty.py chars --input monty.txt --output chars.txt
16
+python3 monty.py analyze --chars chars.txt
17
+python3 monty.py replace --input monty.txt --output MONTY.txt
18
+```
0 commit comments