Removing all commas from list in Python

后端 未结 7 956
旧巷少年郎
旧巷少年郎 2021-01-07 12:26

My issue: I\'d like to add all the digits in this string \'1.14,2.14,3.14,4.14\' but the commas are causing my sum function to not work correctly.
I figured

7条回答
  •  自闭症患者
    2021-01-07 13:10

    I would use the following:

    # Get an array of numbers
    numbers = map(float, '1,2,3,4'.split(','))
    
    # Now get the sum
    total = sum(numbers)
    

提交回复
热议问题