Convert a list of strings into a list of integers in Python ... nums = list(map(int, strings)). print(nums) # prints [1, 2, 3, 4, 5] ...
確定! 回上一頁