File size: 1,003 Bytes
3fda900 f5d16b0 3fda900 f5d16b0 3fda900 f5d16b0 3fda900 f5d16b0 3fda900 f5d16b0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Python Visualizer</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h2>🧠 Python Visualizer</h2>
<form method="post" action="/run">
<textarea name="code" rows="10" cols="70" placeholder="Enter Python code here...">{{ code or '' }}</textarea><br>
<button type="submit">Run Code</button>
</form>
{% if trace %}
<h3>Execution Trace:</h3>
<ol>
{% for step in trace %}
{% if step.error %}
<li style="color:red;">Error: {{ step.error }}</li>
{% else %}
<li>
<strong>Line {{ step.line }}</strong> → Locals: {{ step.locals }}
</li>
{% endif %}
{% endfor %}
</ol>
{% endif %}
{% if output %}
<h3>Output:</h3>
<pre>{{ output }}</pre>
{% endif %}
</body>
</html>
|