if statement with type python code example
Example 1: if statement python
if (condition):
result
else:
result
Example 2: if statements equals same value python
if min(A, B, C, D) >= 2:
print A, B, C, D
if (condition):
result
else:
result
if min(A, B, C, D) >= 2:
print A, B, C, D