import math text = 'abcdefghij' result = [] n = math.ceil(len(text) / 3) #使用ceil時,小數點會無條件進位 for idx in range(0, len(text), ...
確定! 回上一頁