num = 0
# change condition here...
if 1 > 2:
num = 1
print(num == 1)
# expected output: True
Python
Setting up Python environment...
Output
num = 0
# change condition here...
if 1 > 2:
num = 1
print(num == 1)
# expected output: True
Setting up Python environment...