为了账号安全,请及时绑定邮箱和手机立即绑定

从用户处获得的 2 个数字与 x、y、z 之和的乘积之差 (Python)

从用户处获得的 2 个数字与 x、y、z 之和的乘积之差 (Python)

慕码人2483693 2023-08-08 10:29:30
x,y,z = 2,5,10number1 = int(input(""))number2 = int(input(""))Multiplication of numbers =  int(number1) * int(number2)print("Multiplication of numbers: " + str(Multiplication of numbers))x_y_z = int(x) + int(y) + int(z)x_y_z_toplam_ = int(Multiplication of numbers) + int(x_y_z)print(x_y_z_toplam_ )farkı = int(x_y_z_toplam_ ) - int(x_y_z_toplam)print(farkı)
查看完整描述

1 回答

?
肥皂起泡泡

TA贡献1829条经验 获得超6个赞

这是一个经过清理和解释的版本:


x,y,z = 2,5,10


number1 = int(input("Enter number 1: "))  # input prompt message


number2 = int(input("Enter number 2: "))


multiplication_of_numbers =  number1 * number2  # variable name cannot be with spaces, also no need to convert an already int type to an int


print("Multiplication of numbers: {}".format(multiplication_of_numbers))


x_y_z = x + y + z


x_y_z_toplam = multiplication_of_numbers + x_y_z


print(x_y_z_toplam)


farkı = x_y_z_toplam - x_y_z_toplam


print(farkı)


查看完整回答
反对 回复 2023-08-08
  • 1 回答
  • 0 关注
  • 76 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信