Study the following lines of codes in Python:

Questions & AnswersCategory: PythonStudy the following lines of codes in Python:
Vishal Sharma asked 1 year ago

Study the following lines of codes in Python:

int 1 = 10
int 2 = 6
if int 1 != int 2;
    int 2 =++ int 2
print(int 1 - int 2)

What will be the output of these lines?