This is my first project, i hope you enjoy
please upvote!
Python
Jackolanternexe@10mohammed10 Nice! You could make it do exponents by adding one where if the operator is * or ^, the computer * the two numbers together. Here's how it would look i guess:
elif operation == "**" or "^":
cprint (number1 ** number2, 'yellow')
`3 years ago