10-19-2009, 09:24 AM
(10-19-2009, 09:20 AM)Mr.FeellingLeSS Wrote: (line217)print "You won by colour! Profit: "+rnwoncash
Change the line to
Code:
print "You won by colour! Profit: ", rnwoncash
In Python you get a problem when you use "+" with 2 different types of data, since your var "rnwoncash" is integer you can't use "+" to add it to your string...