In C programming, the following code block return False
int a=15, b=10,c=5;
if(a>b>c)
{
printf("True");
}
else
{
printf("False");
}
But in Python, the following block return True.
a = 15
b = 10
c = 5
if a > b > c:
print("True")
else:
print("False")
Edit: Found a solution from link, it explain very well in python perspective. And in C programming perspective this answer explain my question very well.