Odpowiedź :
1.
if x != 100:
print("x jest różne od 100")
2.
if a < 300 or b > 1000
3.
print(a + b)
4.
dwukropek (:)
5.
if a > 10 and a < 100
Odpowiedź:
- x <> 100 lub x ^ 100 != 0
- if a < 300 or b > 1000:
3.suma = a+b
print(suma)
4. dwukropek(:)
5. if a>10 and a<100:
Wyjaśnienie: