string.maketrans 制作一个翻译表(长度为256 的字符串),在这种情况下与 ''.join(chr(x) for x in range(256)) 相同(制作速度更快;-)。 .translate ...
確定! 回上一頁