Що буде виведено в результаті виконання зображених програм?
Спробуй знайти відповіді, не використовуючи комп'ютер, а потім
перевір їх правильність у Python.
a=2
if a! =1:
print (1)
else:
print (2)


a=int (input ())
b=a+2
if b<=a:
print (1)
else:
print (2)


a="текст"
if a! = "текст":
print (1)
else:
print(2)


a=1
if a+25=a*2:
a=a+2
else:
a=a*2
print (a)


х = 1
if x =
== 2:
x = x+2
x = x+2
print (x)


х = 1
if x == 2:
x = x+2
x = x*2
print (x)​
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.