I want to know whether I can make a normal text to have a functionality like a reserved word. For example : "and" is a reserved keyword in python and what I want to do is, give the same power as of "and" to another thing, let's say "abc".
So
w, i = 0,0
if w == 0 and i == 0:
print("True")
w, i = 0,0
if w == 0 abc i == 0:
print("True")
will be the same. Anyone have any idea if this is possible and how can I do that.
Thank You.