✏️ Explanatory Question
Relational operators দুইটি value compare করতে ব্যবহৃত হয়। Result হিসেবে True অথবা False return করে।
| Operator | Meaning |
|---|---|
| == | Equal to |
| != | Not equal to |
| > | Greater than |
| < | Less than |
| >= | Greater than or equal |
| <= | Less than or equal |
x = 10
y = 20
print(x < y)
print(x == y)