Currently I have this code:
if any(w in itemname for w in ("Password","User","Server")):
entry.setvalue(myutils.password_recover(itemvalue))
And I want "E-mail To" to also be a string next to "Server" .. However, if I add "To" then it picks up EVERYTHING that has the letters 'to' .
If I add "E-mail To" then it also picks up everything with both of those words..
What's the correct quotations or way to represent case sensitivity, and for it to match the entire string, not part of the string?