+ 3
Can Somebody Help Me With My Code?
I am making a calculator with Python 3, with some help from the lessons. Can someone tell me what is wrong with it? (It's on my saved codes page) Thanks!! :D
1 Resposta
+ 3
- Turn the num1 and num2 into float, double or int using their functions
- Turn the answer into str with str() or use formating like print("Answer: {}".format(answer))
- Input() gives a string so no need to do str(input()) (not required but makes code more readable)