Login
Remember
Register
Ask a Question
Read the below program code carefully,
0
votes
asked
Sep 25, 2021
in
Python
by
john ganales
Read the below program code carefully,
int1 = 10
int2 = 6
if int != int2:
int2 = ++int2
print(int1 - int2)
What will be the output of this program?
a) 2
b) 4
c) 6
d) None
python-code
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 25, 2021
by
john ganales
b) 4
...