Thomas Guettler wrote: > # No comma at the end: > mylist=[] > for i in range(511): > mylist.append("Spam") or just mylist = ["Spam"] * 511 Kent > print ", ".join(mylist) > > Thomas >