PSP: вывод списков

<html>
<body>
<%
a = ['spam', 'eggs', 100, 1234]
for i in range(10):
  # This comment sets the indentation that will last until
  # another command or comment changes it (И пробелы перед ним обязательны ! )
%>
<p><%= i %></p>
<%
# этот комментарий окончание цикла ! )
%>
</html>
</body>

Leave a Reply