Paste2
Create Paste
Followup Paste
QR
def abc(x):
if x == 'a' :
x = 'a'
elif x == 'b':
x = 'b'
else: x = 'ab'
return x
print(abc('a'))