将字符串重复到一定长度的有效方法是什么?例:repeat('abc', 7) -> 'abcabca'

这是我当前的代码:

def repeat(string, length):
    cur, old = 1, string
    while len(string) < length:
        string += old[cur-1]
        cur = (cur+1)%len(old)
    return string

有没有更好的(更python化的)方法来做到这一点?也许使用列表理解?


当前回答

from itertools import cycle, islice
def srepeat(string, n):
   return ''.join(islice(cycle(string), n))

其他回答

def rep(s, m):
    a, b = divmod(m, len(s))
    return s * a + s[:b]
c = s.count('a')    
div=n//len(s)    
if n%len(s)==0:
    c= c*div
else:
    m = n%len(s)
    c = c*div+s[:m].count('a')
print(c)

这是非常python的:

newstring = 'abc'*5
print newstring[0:6]
from itertools import cycle, islice
def srepeat(string, n):
   return ''.join(islice(cycle(string), n))

这是一种使用列表理解的方法,尽管随着rpt字符串长度的增加,这种方法会越来越浪费。

def repeat(rpt, length):
    return ''.join([rpt for x in range(0, (len(rpt) % length))])[:length]