在python3中使用千位分隔符的算术

时间:2016-11-19 21:43:10

标签: python-3.x localization number-formatting arithmetic-expressions

我有以下脚本:

'

它有效,但我想知道是否有更好的方法可以用数千个分隔符来减去数字,而不是使用#!/usr/bin/python3 f = open('importaciones2015-2016SFe-utf8.csv') lineas = f.readlines()[1:] for linea in lineas: rubro, producto, unidad , ant , actual = linea.split(";") print(int(actual.replace(".","")) - int(ant.replace(".",""))) f.close()

0 个答案:

没有答案