What operators have you used? This article describes various Python operators.
Operators are symbols for performing calculations. +,-, *, ÷, etc. are one of them.
-Is an operator for subtraction.
/ / Is an operator for division. I don't use it in my daily life.
// //はあまりを切り捨てで割り算をするための演算子です。
** ** is an operator for calculations such as XX to the XX power.
Did you know any operators for the first time after reading this article? If you have any comments, please let us know in the comments.
Recommended Posts