+ 1
как правильно записать на место чёрточек вставить знаки пожалуйста
x = 10 y = 20 - x > y- print("if statement") print("else statement")
9 Respostas
+ 1
спасибо
+ 2
"-x" is the negation of x.
"-y" is the negation of y.
Basically speaking, if you have x=2 and y=3, then...
-x>-y
... is the same as...
-2>-3
In this case, it is True. It depends on the values, evidently. Also:
-x>-y
is the same as...
y>x
Hope I could help! :)
+ 1
Gonçalo Magalhaes
we are still learning to formulate the problem in our native language :)
+ 1
Gonçalo Magalhaes
Do you know what is "-x>y-" in python? I have many ideas, but what does the author mean? this is what I find out..
+ 1
Gonçalo Magalhaes
You Replace y- :)) it is only one variant
+ 1
You're right! If that is the case, it is an error, it will lead to a SintaxError being raised.
0
751157
Дано x=10, y=20. Ecли -10>20- , то что на выходе?
0
I guess if you ask the question in English, you'll get much more help :)
0
Sure! What is the question?