summaryrefslogtreecommitdiff
path: root/progs/a555.py
blob: 449ca5d6def1625409da083da45165ac847e009c (plain)
1
2
3
4
5
6
7
8
9
def check_String(str): 
    flag_l = False
    flag_n = False
    for i in str: 
        if i.isalpha(): 
            flag_l = True  
        if i.isdigit(): 
            flag_n = True
    return flag_l and flag_n