পাইথন শৃঙ্খলিত তুলনা সহ বিশেষ কিছু করে।
নিম্নলিখিতগুলি আলাদাভাবে মূল্যায়ন করা হয়:
x > y > z # in this case, if x > y evaluates to true, then
# the value of y is being used to compare, again,
# to z
(x > y) > z # the parenth form, on the other hand, will first
# evaluate x > y. And, compare the evaluated result
# with z, which can be "True > z" or "False > z"
যদিও উভয় ক্ষেত্রেই প্রথম তুলনা হয় False
, বাকী বাক্যটির দিকে নজর দেওয়া হবে না।
আপনার বিশেষ ক্ষেত্রে জন্য,
1 in [] in 'a' # this is false because 1 is not in []
(1 in []) in a # this gives an error because we are
# essentially doing this: False in 'a'
1 in ([] in 'a') # this fails because you cannot do
# [] in 'a'
উপরের প্রথম বিধিটি প্রদর্শন করার জন্য, এগুলি বিবৃতি যা সত্যকে মূল্যায়ন করে।
1 in [1,2] in [4,[1,2]] # But "1 in [4,[1,2]]" is False
2 < 4 > 1 # and note "2 < 1" is also not true
পাইথন অপারেটরদের নজির: http://docs.python.org/references/expressions.html#summary
if a < b < c:
এবং স্বজ্ঞাতভাবে এটি কাজ করতে দেয়