0

List of elements:

['1', '2', '2', 3, 6, 6, 3]

How would we convert this to a string such as:

"1223663"

Pavv
  • 39
  • 2

1 Answers1

0
list_elements = ['1', '2', '2', 3, 6, 6, 3]

final_string = ''.join(str(element) for element in list_elements)
Atul
  • 2,170
  • 23
  • 24