How to convert a list of ints to a list of strings in Python

preview_player
Показать описание
In this tutorial, I'm gonna be showing you how to convert a list of ints to a list of strings in Python by using map() function.
Рекомендации по теме
Комментарии
Автор

Or: strinz = [str(num) for num in nums]

RagHelen