What is the output of the following code?x=0 if x<4: x=x+1 print (x is", x) * ??????????

Ответы

Ответ дал: desmonddesm
14

Ответ:

X is 1

Объяснение:

X=0

if x<4(True, x=0):

X = x+1 (x=1)

print(x)

X is 1

Вас заинтересует