So the problem I am currently having is that my program always calls the 'md5cypher' class which I have defined, even if the input is not in that list:
def enc():
global toe
if toe=='md5' or 'M' or 'm' or 'Md5' or 'MD5':
print("Md5 Encryption Cypher")
md5cypher()
else:
print("Sha1 Encryption Cypher")
shacypher()
What am I doing wrong?