Hello all...this is stumping me...it keeps returning a repetition of num ten times rather than multplying by 10...Which way can I fix this?
def main():
num = input('Please enter a number: ')
print(times_ten(num))
def times_ten(num):
return 10 * num
main()
Thanks!!!