Say I have a string that can contain different characters:
e.g. word = "UPPER£CASe"
word = "UPPER£CASe"
How would I test the string to see if all the charac
Here you can find a very useful way to check if there's at least one upper or lower letter in a string
Here's a brief example of what I found in this link:
print(any(l.isupper() for l in palabra))
https://www.w3resource.com/python-exercises/python-basic-exercise-128.php