Can anyone tell me why my code is returning the error (in the Python IDLE)?:
TypeError: can't multiply sequence by non-int of type 'str' ".
here is the code that's been causing the errors:
def main():
    varone = input("Enter total number of episodes:  ")
    vartwo = input("enter approx. time of each episode (in minutes):  ")
    varthree = varone * vartwo
    print(varthree)
    print("minutes")
main()