What is the output of the following code?x=0 if x<4: x=x+1 print (x is", x) * ??????????
Ответ:
X is 1
Объяснение:
X=0
if x<4(True, x=0):</p>
X = x+1 (x=1)
print(x)