tes jika karakter adalah string python angka

>>> 'A'.isdigit()
False
>>> '1'.isdigit()
True
Disturbed Dragonfly