Let's say I have string:
string1 = "h \\\\\ 2*2"
How do I check the string to make sure it doesn't have any letters, regardless of capitlization.
So like
I have
if "a" in string1 or "A" in string1:
print("it's got an A bro")
elif "b" in string1 or "B" in string1:
print("it's got a B bro")
#cont...
else:
print("There no letters in ur string bro")
There's gotta be a faster way to do this I assume. I am only looking for letters. Everything else can stay. like "\" or "*" those are good.