example of list items String map in python3 Example: map function to change type of element in python nums = ['3','4','7'] nums = list(map(int, nums)) print(nums)