您的位置:

Python 程序:计算两个数平均值

写一个 Python 程序,求两个数的平均值。这个 Python 示例接受两个整数,并计算总和和平均值。

x = int(input("Please Enter the First Number  = "))
y = int(input("Please Enter the Second number = "))

sumOfTwo = x + y

avgOfTwo = sumOfTwo / 2

flooravgofTwo = sumOfTwo // 2

print('The sum of {0} and {1}       = {2}'.format(x, y, sumOfTwo))
print('The Average of {0} and {1}   = {2}'.format(x, y, avgOfTwo))
print('Floor Average of {0} and {1} = {2}'.format(x, y, flooravgofTwo))

Python 程序求两个浮点数的平均值。

x = float(input("Please Enter the First Number  = "))
y = float(input("Please Enter the Second number = "))

sumOfTwo = x + y

avgOfTwo = sumOfTwo / 2

flooravgofTwo = sumOfTwo // 2

print('The sum of {0} and {1}       = {2}'.format(x, y, sumOfTwo))
print('The Average of {0} and {1}   = {2}'.format(x, y, avgOfTwo))
print('Floor Average of {0} and {1} = {2}'.format(x, y, flooravgofTwo))
Please Enter the First Number  = 22.9
Please Enter the Second number = 14.7
The sum of 22.9 and 14.7       = 37.599999999999994
The Average of 22.9 and 14.7   = 18.799999999999997
Floor Average of 22.9 and 14.7 = 18.0
Python 程序:计算两个数平均值

2022-07-24
Python 程序:计算数组平均值

2022-07-24
Python 程序:计算列表项平均值

2022-07-24
Python 程序:计算列表中数字平均值

2022-07-24
用 Python 计算平均数

2023-05-10
Python列表平均值计算

2023-05-10
Python程序求列表平均值

2023-05-10
使用Python计算数据的平均值

2023-05-10
Python函数:计算平均数

2023-05-12
Python 程序:计算五个科目的总平均值和百分比

2022-07-24
利用Python tuple计算列表中数值的平均值

一、Python tuple概述 Python tuple是一种不可变的数据类型,可以存储多个相关数据,例如数字、字符串、列表等。与列表不同,元组不能修改、删除或添加元素。因此,元组更适合于存储不需要

2023-12-08
Python列表平均值分析

2023-05-10
Python平均值计算功能实现方法

2023-05-17
Python列表平均值求解

2023-05-10
Python列表求平均值

2023-05-10
Python 程序:求N个自然数的和与均值

2022-07-24
Python 程序:求N个自然数的和与均值

2022-07-24
Python平均数

Python是一门高级语言,拥有丰富的数学计算库和科学计算工具,并且被广泛应用于数据处理、科学计算和人工智能等领域。在Python中,平均数被广泛使用,本文将从多个方面对Python平均数进行详细的阐

2023-12-08
Python平均数

Python是一门高级语言,拥有丰富的数学计算库和科学计算工具,并且被广泛应用于数据处理、科学计算和人工智能等领域。在Python中,平均数被广泛使用,本文将从多个方面对Python平均数进行详细的阐

2023-12-08
Python 中列表的平均值

2022-07-24