加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Add two numbers 240 Bytes
一键复制 编辑 原始数据 按行查看 历史
Craig 提交于 2020-10-10 21:41 . Merge branch 'master' into patch-1
patch-1
# This program adds two numbers
num1 = 1.5
num2 = 6.3
# Add two numbers
sum = num1 + num2
# Display the sum
=======
num1 = 1.5
num2 = 6.3
sum = num1 + num2
master
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化