Guest

for in psp

By: a guest on Nov 19th, 2010  |  syntax: Python  |  size: 0.52 KB  |  hits: 173  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <html>
  2. <body>
  3. <%
  4. for i in range(10):
  5. %><!-- En esta linea no hace falta tabular pues encuentra el cierre del script
  6. y sobre entiende que el codigo debajo quedara dentro del iterador -->
  7. <p>
  8. <%= i %>
  9. </p>
  10. <%
  11.         for j in range(10):
  12.                 req.write('hello <br>')
  13.                 # La linea inmediatamente superior equivale a:
  14.                 # ASP --> Response.write "hello"
  15.                 # PHP --> echo "hello";
  16.  
  17. # Estas ultimas lineas no son  necesarias si aseguramos
  18. # de que no existe tabulacion
  19. # pero nunca vienen mal para facilitar la comprension del codigo
  20. %>
  21. </body>
  22. </html>