So überprüfen Sie, ob alle Zeichen in der String gleiche Python sind
s == len(s) * s[0]
Yucky Yacare
s == len(s) * s[0]
s = "dddd"
if all([x == s[0] for x in s]):
print("All the characters are same")