HUBUNGI STRING HANYA

my_string = 'abcdefg'

if my_string.isalpha():
    print('it is letters')
#output: it is letters
Confused Cormorant