DEV Community

Nati Thinks Tech
Nati Thinks Tech

Posted on • Updated on

Map and Join and Strings()

Sometimes you try to find how to loop an Array and transform its all elements.The map() function can do it for you. In this example, we get all numbers in a list and transform them into strings with map and join.
example:

my_list = ["natalia","have:",1000,"dolars","in",2020]
list = map(str,my_list)
print(" ".join(list))

Enter fullscreen mode Exit fullscreen mode

Top comments (0)