james_027 <[EMAIL PROTECTED]> writes: > Thanks for your quick answer ... Actually I was thinking how do I > access the index inside a for statement? Can you help
It sounds like you're just starting to learn the language... have you read the online tutorial yet? That is a pretty easy introduction. See: http://python.org/doc/ Anyway, you can say for i in (1,2,3): print i*5 to print 5, 10, and 15 on separate lines, for example. -- http://mail.python.org/mailman/listinfo/python-list