Map and Join and Strings()
Nat谩lia Catunda
Posted on June 14, 2020
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))
馃挅 馃挭 馃檯 馃毄
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.