MulaiMulai sekarang secara gratis

Basic calculations

Like MATLAB, you can use Python to perform basic calculations. Most of the standard operators are similar between MATLAB and Python.

Addition +
Subtraction -
Multiplication *
Division /
Exponentiation **

One crucial difference is the operator for taking a number to a power. In Python, the ^ operator does something else entirely… you'll need to make sure you use ** when you want to square a number.

Latihan ini adalah bagian dari kursus

Python for MATLAB Users

Lihat Kursus

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Print 2 minus 3
print(____)
Edit dan Jalankan Kode