Q:

Write a Python program to create a list reflecting the run-length encoding from a given list of integers or a given list of characters

0

Write a Python program to create a list reflecting the run-length encoding from a given list of integers or a given list of characters.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

from itertools import groupby
def encode_list(s_list):
    return [[len(list(group)), key] for key, group in groupby(s_list)]
n_list = [1,1,2,3,4,4.3,5, 1]
print("Original list:") 
print(n_list)
print("\nList reflecting the run-length encoding from the said list:")
print(encode_list(n_list))
n_list = 'automatically'
print("\nOriginal String:") 
print(n_list)
print("\nList reflecting the run-length encoding from the said string:")
print(encode_list(n_list))

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now