g = raw_input("Any other items enter the price: $")
if (g.isalpha()):
g = 0.0
if (g.isdigit()):
g = g
else:
g = 0.0
Pat=(raw_input('And how many of this item:'))
if (Pat.isalpha()):
Pat = 0.0
if (Pat.isdigit()):
Pat = Pat
else:
Pat = 0.0
g_ = (Pat * g)
Total = (a_ + b_ + c_ + d_ + e_ + f_ + g_)
print'Total: $',Total, '''
It keeps returning the error:
TypeError: can't multiply sequence by non-int of type 'str'