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."
|
" * input: file o codice da eseguire."
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
def utilizzo():
|
def utilizzo():
|
||||||
print(*istruzioni, sep="\n")
|
print(*istruzioni, sep="\n")
|
||||||
exit(1)
|
exit(1)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
from .trinario import *
|
from .trinario import *
|
||||||
|
|
||||||
|
|
||||||
class Macchina:
|
class Macchina:
|
||||||
|
|
||||||
def esegui(self, programma):
|
def esegui(self, programma):
|
||||||
@ -35,7 +36,9 @@ class Macchina:
|
|||||||
for indice, word in enumerate(programma):
|
for indice, word in enumerate(programma):
|
||||||
if word not in ("\n", " "):
|
if word not in ("\n", " "):
|
||||||
if trinord(word) not in range(32, 127):
|
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:
|
else:
|
||||||
self.c[indice] = trinord(word)
|
self.c[indice] = trinord(word)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user