Hey guys, I'm wanting to learn Python and eventually how to program with it. 
I'm 16 and very eager to learn. I already have a question.

Heres my script:
print "Hello World!"
print "Here are the ten numbers from 0 to 9"
for i in range(10) :
    print i,
    print "Goodbye World!"

Result of my script : 
Hello World!
Here are the ten numbers from 0 to 9
0 Goodbye World!
1 Goodbye World!
2 Goodbye World!
3 Goodbye World!
4 Goodbye World!
5 Goodbye World!
6 Goodbye World!
7 Goodbye World!
8 Goodbye World!
9 Goodbye World!


I don't Understand. I have an idea it something like Goodbye world is threading 
together with the numbers? Feedback is Thanked :)



      
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to