a = 10 b = 9 c = 9 if(a > b,c): print(\'In if\') else: print(\'In else\')
Someone posted the above piece of code, and asked why the above