s = input()
print(any(i.isalnum() for i in s))
print(any(i.isalpha() for i in s))
print(any(i.isdigit() for i in s))
print(any(i.islower() for i in s))
print(any(i.isupper() for i in s))
# All elements of list are true
l = [ 4, 5, 1]
print(any( l ))
# All elements of list are false
l = [ 0, 0, False]
print(any( l ))
# Some elements of list are
# true while others are false
l = [ 1, 0, 6, 7, False]
print(any( l ))
# Empty List
l = []
print(any( l ))
# All elements of tuple are true
t = (2, 4, 6)
print(any(t))
# All elements of tuple are false
t = (0, False, False)
print(any(t))
# Some elements of tuple are true while
# others are false
t = (5, 0, 3, 1, False)
print(any(t))
# Empty tuple
t = ()
print(any(t))