View difference between Paste ID: xZPgDQ20 and 7Mmp6qf4
SHOW: | | - or go back to the newest paste.
1
x=10
2
y=20
3-
if x=10 and y=20:
3+
if x==10 and y==20:
4
    print("ramte if")
5-
elif x<=10 and y=20:
5+
elif x<=10 and y==20:
6
    print("ramte elif")
7
else:
8-
    print("ramte else")    
8+
    print("ramte else")