Operators
Operator ဆိုတာက variable နှစ်ခုကြား ပြုလုပ်မဲ့ function အတွက်ကို assign ချတဲ့ process အတွက် အသုံးပြုတာ ဖြစ်ပါတယ်။
Python မှာ Beginner Level အနေနဲ့ ဆို
Arithmetic Operators
Assignment Operators
Comparison Operators နဲ့
Logical Operators
တွေကိုသိထားဖို့ လိုပါတယ်။
Arithmetic Operators
Maths Calculation တွေ လုပ်တဲ့ နေရာမှာ သုံးတဲ့ Operators
+
Addition
x + y
-
Subtraction
x - y
*
Multiplication
x * y
/
Division
x / y
%
Modulus
x % y
**
Exponentiation
x ** y
//
Floor division
x // y
Assignment Operators
value တွေကို variable မှာ assign လုပ်ဖို့ သုံးတဲ့ operators
=
x = 5
x = 5
+=
x += 3
x = x + 3
-=
x -= 3
x = x - 3
*=
x *= 3
x = x * 3
/=
x /= 3
x = x / 3
%=
x %= 3
x = x % 3
//=
x //= 3
x = x // 3
**=
x **= 3
x = x ** 3
&=
x &= 3
x = x & 3
|=
x |= 3
x = x | 3
^=
x ^= 3
x = x ^ 3
>>=
x >>= 3
x = x >> 3
<<=
x <<= 3
x = x << 3
Comparison Operators
Values တွေ Compare လုပ်ရာမှာ သုံးတဲ့ Operators
==
Equal
x == y
!=
Not equal
x != y
>
Greater than
x > y
<
Less than
x < y
>=
Greater than or equal to
x >= y
<=
Less than or equal to
x <= y
Logical Operators
Conditional Statement တွေနဲ့ တွဲသုံးလေ့ ရှိတဲ့ Operators
and
Returns True if both statements are true
x < 5 and x < 10
or
Returns True if one of the statements is true
x < 5 or x < 4
not
Reverse the result, returns False if the result is true
not(x < 5 and x < 10)
Last updated