I'll take any input. Just started programming in Python and can't solve this error.
My simple code:
hourlyWage = input('Hourly Wage?')
weeklyHours = input('Weekly Hours?')
weeklyWage = hourlyWage * weeklyHours
print(weeklyWage)
The error:
"TypeError: can't multiply sequence by non-int of type 'str'
I create two variables that a User can input, when I try to get the product of the two variables I get an error. Any help is appreciated.