Correzioni
This commit is contained in:
parent
c6af7a576a
commit
cf1649e0ef
16
666.py
16
666.py
@ -1,11 +1,21 @@
|
|||||||
import malbolge
|
import malbolge
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
istruzioni = [
|
||||||
|
"Utilizzo:",
|
||||||
|
"666 [-f] input",
|
||||||
|
" * -f: specifica un file.",
|
||||||
|
" * input: file o codice da eseguire."
|
||||||
|
]
|
||||||
|
|
||||||
|
def utilizzo():
|
||||||
|
print(*istruzioni, sep="\n")
|
||||||
|
exit(1)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
programma = sys.argv[1]
|
programma = sys.argv[1]
|
||||||
except IndexError:
|
except IndexError:
|
||||||
print("Utilizzo:", "666 [-f] input", " * -f: specifica un file.", " * input: file o codice da eseguire.", sep="\n")
|
utilizzo()
|
||||||
exit(1)
|
|
||||||
|
|
||||||
if sys.argv[1] == "-f":
|
if sys.argv[1] == "-f":
|
||||||
try:
|
try:
|
||||||
@ -13,7 +23,7 @@ if sys.argv[1] == "-f":
|
|||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
exit("File non trovato.")
|
exit("File non trovato.")
|
||||||
except IndexError:
|
except IndexError:
|
||||||
exit("Specifica un file.")
|
utilizzo()
|
||||||
if programma == "":
|
if programma == "":
|
||||||
exit("File vuoto.")
|
exit("File vuoto.")
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user