python if condition greater than code example
Example 1: compare int in Python
1 == 2
#OR
1 is 2
Example 2: if statements equals same value python
if min(A, B, C, D) >= 2:
print A, B, C, D
1 == 2
#OR
1 is 2
if min(A, B, C, D) >= 2:
print A, B, C, D