Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
The below python code is not working. Nothing shows up in browser.
I am using Python Publisher Handler for web development
PHP
def loop():
	for i in range(10):
		print "<html> <body> %d </body></html>" % i

Can anyone tell me how to use python for loop in web developemt.
Thanx!!
Posted
Updated 6-Sep-12 6:04am
v2

1 solution

Can anyone tell me how to use python for loop in web developemt
Here: Python - for Loop Statements[^]

Example:
PHP
#!/usr/bin/python

for letter in 'Python':     # First Example
   print 'Current Letter :', letter

fruits = ['banana', 'apple',  'mango']
for fruit in fruits:        # Second Example
   print 'Current fruit :', fruit

print "Good bye!"

This will produce following result:
Current Letter : P
Current Letter : y
Current Letter : t
Current Letter : h
Current Letter : o
Current Letter : n
Current fruit : banana
Current fruit : apple
Current fruit : mango
Good bye!
 
Share this answer
 
Comments
Rushabh.Padalia 6-Sep-12 12:20pm    
I tried this


#!/usr/bin/python
def pri():
for letter in 'Python': # First Example
print 'current Letter :' , letter

But there was no output on the browser

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900