0
之間的所有連續的字母的單詞,我有以下字符串:如何獲得長度a和b
s = 'HELLOPEOPLE'
如何我會得到在長度A和B之間的上述字由連續的字母的所有單詞?例如:
get_words('HELLOPEOPLE', min=2, max=3)
==> he, el, ll, lo, op, pe, eo, pl, le, hel, ell, llo, lop, peo, epl, ple
起初我以爲使用chain.product
,但不服從的字母排序(據我可以告訴)。