Judi Keplar wrote:
I am currently taking a course to learn Python and was looking for some help. I need to write a Python statement to print a comma-
separated repetition of the word, "Spam", written 511 times ("Spam, Spam, … Spam").


Can anybody help me get started?  I am completely new to programming!

Thanks in advance!

>>> print "Spam, " * 510 + "Spam"

Will McGugan
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to