+1 vote
in Python by

How do I perform mathematical operations in Python?

1 Answer

0 votes
by

Python supports all the standard arithmetic operations, such as addition (+), subtraction (-), multiplication (*), and division (/). You can also use the built-in functions such as pow() and sqrt() for more complex mathematical operations.

...