String - Special Characters



rb=input().strip()

for k in rb:

    if(not k.isdigit() and not k.isalpha() and k!=' '):

        print(k,end='')

Post a Comment

0 Comments