Pq o código traz NENHUM JOGO AQUI?
PYTHON****
from flask import Flask, render_template
app = Flask(name)
class Jogo: def init(self, nome, categoria, console): self.nome = nome self.categoria = categoria self.console = console
@app.route('/') def ola(): jogo1 = Jogo('Super Mario', 'Acao', 'SNES') jogo2 = Jogo('Pokemon Gold', 'RPG', 'GBA') lista = [jogo1, jogo2] return render_template('lista.html', titulo='Jogos', jogos=lista)
app.run()
HTML**
Jogoteca
Temos {{ len(lista) }} jogos no nosso site.
{% else %}Nenhum jogo aqui...
{% endif %} <tr>
<th>Nome</th>
<th>Categoria</th>
<th>Console</th>
</tr>
</thead>
<tbody>
{% for i in jogos %}
<tr>
<td>{{i.nome}}</td>
<td>{{i.categoria}}</td>
<td>{{i.console}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>