If you're outputting to HTML (and I imagine you are), you'll need <br/> elements in your template, or a <pre> tag:
{% for keep in keep1 %}
{{ keep }}<br />
{% endfor %}
or
<pre>
{% for keep in keep1 %}
{{ keep }}
{% endfor %}
</pre>
Whitespace characters (spaces, new lines, etc.) have special treatment in HTML, and newlines by themselves are not usually displayed.
As above, I'd still be interested to see your view code, however. It looks like
keep1 = [[45,70,65], [45,70,65], [45,70,65]]
from your output, which is not what you want. Perhaps a mistake with a list comprehension or something?
keep1 = [45,70,65]in the Context to the template? You should probably also show the view code that renders the template. – alan Aug 18 '12 at 16:17