Python 中可以使用字符串切片来实现按固定长度分割字符串。 假设要将字符串s按照固定长度n分割,可以使用如下代码: s = '1234567890' n = 3 result = [s[i:i+n] for i ...
確定! 回上一頁