Answers for "map values in python"

0

map function to change type of element in python

nums = ['3','4','7']
nums = list(map(int, nums))
print(nums)
Posted by: Guest on August-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language