Map and Join and Strings()

catundanatalia

Nat谩lia Catunda

Posted on June 14, 2020

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
馃挅 馃挭 馃檯 馃毄
catundanatalia
Nat谩lia Catunda

Posted on June 14, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related