Any help is appreciated, also any big flaws or something you see in the way im formatting or something basic, please point it out. Thanks!
day = raw_input(\"
the problem is that days is a string.
days
when you do
return 140 * days
it actually multiples your string to 140. so if days == "5" you will have "555555555555555555..." (140 characters)
you want to operate with integers so do days = int(day) instead
days = int(day)