Create a compress function in Python?

后端 未结 19 1263
感动是毒
感动是毒 2021-01-05 03:37

I need to create a function called compress that compresses a string by replacing any repeated letters with a letter and number. My function should return the shortened vers

19条回答
  •  佛祖请我去吃肉
    2021-01-05 04:25

    from collections import Counter
    def string_compression(string):
        counter = Counter(string)
        result = ''
        for k, v in counter.items():
            result = result + k + str(v)
        print(result)
    

提交回复
热议问题