我是靠谱客的博主 明理灯泡,最近开发中收集的这篇文章主要介绍Python 计算两个长整数(由字符串表示)之和,结果也返回字符串,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

def calcusum(s1, s2):
# 计算两个长整数(由字符串表示)之和,结果也返回字符串
size1, size2 = len(s1), len(s2)
index1, index2 = size1 - 1, size2 - 1
res = ""
tmp = 0
while index1 > -1 and index2 > -1:
tmp += int(s1[index1]) + int(s2[index2])
res = str(tmp%10) + res
tmp = tmp // 10
index1 -= 1
index2 -= 1
while index1 == -1 and index2 > -1:
tmp += int(s2[index2])
res = str(tmp%10) + res
tmp = tmp // 10
index2 -= 1
while index1 > -1 and index2 == -1:
tmp += int(s1[index1])
res = str(tmp%10) + res
tmp = tmp // 10
index1 -= 1
if tmp:
res = str(tmp % 10) + res
return res

最后

以上就是明理灯泡为你收集整理的Python 计算两个长整数(由字符串表示)之和,结果也返回字符串的全部内容,希望文章能够帮你解决Python 计算两个长整数(由字符串表示)之和,结果也返回字符串所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(77)

评论列表共有 0 条评论

立即
投稿
返回
顶部