criação de pasta 'modules'
pasta 'modules' contém os diferentes módulos usados pela app
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
from agente import Agente
|
||||
from modules.agente import Agente
|
||||
|
||||
tamanho_mundo: tuple = (24, 24)
|
||||
|
||||
@ -15,5 +15,5 @@ for _ in range(0, tamanho_mundo[0]):
|
||||
m, n = 0, 0
|
||||
for m in range(0, tamanho_mundo[0]):
|
||||
for n in range(0, tamanho_mundo[1]):
|
||||
print(f'{mundo[m][n].pontuacao} ', end='')
|
||||
print(f'{mundo[m][n].pontuacao:2} ', end='')
|
||||
print('')
|
||||
|
||||
Reference in New Issue
Block a user