Correzione PEP8
This commit is contained in:
parent
c344dfa364
commit
a65f02b198
1
666.py
1
666.py
@ -8,6 +8,7 @@ istruzioni = [
|
||||
" * input: file o codice da eseguire."
|
||||
]
|
||||
|
||||
|
||||
def utilizzo():
|
||||
print(*istruzioni, sep="\n")
|
||||
exit(1)
|
||||
|
@ -1,5 +1,6 @@
|
||||
from .trinario import *
|
||||
|
||||
|
||||
class Macchina:
|
||||
|
||||
def esegui(self, programma):
|
||||
@ -35,7 +36,9 @@ class Macchina:
|
||||
for indice, word in enumerate(programma):
|
||||
if word not in ("\n", " "):
|
||||
if trinord(word) not in range(32, 127):
|
||||
raise SyntaxError("Carattere non consentito nel programma: '%c' a %d." % (word, indice))
|
||||
raise SyntaxError("Carattere non consentito nel programma:\
|
||||
'%c' a %d." % (word, indice)
|
||||
)
|
||||
else:
|
||||
self.c[indice] = trinord(word)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user