加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 405 Bytes
一键复制 编辑 原始数据 按行查看 历史
缀雪decsnow 提交于 2021-03-30 00:19 . add main.py.
def method(value):
#divmod()是内置函数,返回整商和余数组成的元组
result = []
while value:
value, r = divmod(value, 10)
result.append(r)
result.reverse()
return result
code = method(int(input('type the 12-digit bar code')))
s=0
t=0
i=0
while i<=5:
s=s+code[2*i+1]
t=t+code[2*i]
i=i+1
m=3*s+t
n=m-int(m/10)*10
print('the check code is',10-n)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化