在Python中查找带有千位分隔符的数字的程序
假设我们有一个数字 n,我们必须将此数字返回为字符串格式,其中千位以逗号 (",") 分隔。
因此,如果输入类似于 n = 512462687,那么输出将是“512,462,687”
示例(Python)
让我们看看以下实现以获得更好的理解 -
def solve(n):res = str(n)
res = res[::-1]
ans = ""
for i in range(len(res)):
if i%3 == 0 and i != 0 :
ans += ','
ans += res[i]
ans = ans[::-1]
return ans
n = 512462687
print(solve(n))
输入
512462687输出结果
512,462,687
以上是 在Python中查找带有千位分隔符的数字的程序 的全部内容, 来源链接: utcz.com/z/343803.html