def is_dui_chen(st): st = str(st) for i in range(len(st) // 2): if st[i] == st[-1 - i]: return True else: return Falseprint(is_dui_chen('3ab6ba3'))