Run »
a = "\u0030" #unicode for 0 b = "\u0047" #unicode for G print(a.isdecimal()) print(b.isdecimal())
True
False