_list = [1,2,3,4,5] _list_to_binary = [ bin(list_item)[2:] for list_item in _list ] # outputs ['1', '10', '11', '100', '101']