Convert A List Of Integer To A List Of Predefined Strings In Python
How to convert a list [0,1,2,1] to a list of string, when we convert 0 to 'abc', 1 to 'f' and 2 to 'z'? So the output list will be ['abc','f','z','f']. I did: x = [] for i in xrang
Solution 1:
Use a dictionary as your translation table:
old_l = [0, 1, 2, 1]
trans = {0: 'abc', 1: 'f', 2: 'z'}
Then, to translate your list:
new_l = [trans[v] for v in old_l]
Post a Comment for "Convert A List Of Integer To A List Of Predefined Strings In Python"