I have the following code:
#Euler Problem 1
print \"We are going to solve Project Euler\'s Problem #1\"
euler_number = input(\'What number do you want
Here's the documentation for Python's for
syntax:
http://docs.python.org/2/reference/compound_stmts.html#for
It loops over any sequence of values, not just a sequence of numbers like in other languages.
Have fun learning Python, it's a great language. Also, the Project Euler challenges are fun, so stick with them, and don't give up!