gpt4 book ai didi

python - 将 RLE 从列表转换为 Python 中的字符串

转载 作者:太空宇宙 更新时间:2023-11-03 21:05:02 25 4
gpt4 key购买 nike

我改编了另一个问题中的一段代码,该代码将字符串转换为Python中的RLE。我正在寻找一种使用相同概念但相反的解决方案,即输入一些 RLE 并获取完整的字符串。我已经在下面包含了我使用的原始代码。

提前致谢(已更新以包括贡献的代码和输出屏幕截图)

text=input("Please enter the string to encode")
encoded=[]
index=0
amount=1
while index<=(len(text)-1):
if index==(len(text)-1) or text[index]!=text[(index+1)]:
encoded.append((text[index],amount))
amount=1
else:
amount=amount+1
index=index+1
print(encoded)

from itertools import groupby

def rle(text):
return [(i, len(list(g))) for i, group in groupby(text)]

def from_rle(s):
return ''.join((i*j for i, j in s))

print(text)


[/image/bLevj.jpg][1]

最佳答案

尝试使用groupby

from itertools import groupby

def rle(text):
return [(i, len(list(g))) for i, group in groupby(text)]

def from_rle(s):
return ''.join((i*j for i, j in s))

关于python - 将 RLE 从列表转换为 Python 中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55470316/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com