On Fri, 29 Nov 2013 16:31:21 -0800 (PST)
farhan...@gmail.com wrote:

> print "<p>The total rolled was: "number" </p>"

The above line is wrong. You did it right below:

> print "<p>Thanks for playing, "  + name +  ".</p>"
> print "<p>You bet the total would be at least " + value + ".</p>"

Do this:

print "<p>The total rolled was: " + number + " </p>"

Regards,
Johannes
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to