- 3
x=10 y=20 if x>y print (if state..) _____ .....
16 Antworten
+ 4
Answer is x = 10
y = 20
if
x > y
:
print("if statement")
else:
print("else statement")
+ 2
x = 10
y = 20
if x>y:
......(........)
else:
......(........)
+ 1
i neeed an answer im dying over here
0
la x y y deben estar separadas del signo de mayor que (>)
0
ducks!
0
I'm not getting right answer
0
helpppppppp please
0
this is no help !!1
0
Answer : -10
x is smaller than y. so, we have to minus y from x
0
can I please get help?
0
x=10
y=20
if
x > y
:
Print("if statement")
Else:
Print("else statement")
0
x = 10
y = 20
if x>y:
print("if statement")
else:
print("else statement")
- 2
......?
- 2
I need an answer please
- 3
I don't get the point of your question, let's make something clear quickly firstly.
Your if statement is totally wrong:
if x > y:
print("whatever")#print whatever you want
Lastly, why did you put an if in your print? what are you trying to archive there exactly?
- 5
x = 10
y = 20
if
x > y
:
print("if statement")
else:
print("else statement")