当前分类:300例题>>正文

Python示例:利用长度和宽度计算矩形周长

来源:互联网   更新时间:2023年6月26日  

Python 示例

编写 Python示例,通过一个实际例子,利用长度和宽度找到矩形的周长。

使用长度和宽度查找矩形周长的 Python示例示例 1

这个 Python示例允许用户输入矩形的长度和宽度。通过使用长度和宽度,这个程序找到一个矩形的周长。计算矩形周长的数学公式:周长= 2 *(长度+宽度)。如果我们知道长度和宽度。

# Python Program to find Perimeter of a Rectangle using length and width

length = float(input('Please Enter the Length of a Triangle: '))
width = float(input('Please Enter the Width of a Triangle: '))

# calculate the perimeter
perimeter = 2 * (length + width)

print("Perimeter of a Rectangle using", length, "and", width, " = ", perimeter)
Please Enter the Length of a Triangle: 35
Please Enter the Width of a Triangle: 88
Perimeter of a Rectangle using 35.0 and 88.0  =  246.0

使用长度和宽度计算矩形周长的 Python示例示例 2

这个 Python示例求矩形周长同上。但是,在这个 python 程序中,我们使用 Python 函数来分隔矩形逻辑的周长。

# Python Program to find Perimeter of a Rectangle using length and width

def perimeter_of_Rectangle(length, width):
    return 2 * (length + width)

length = float(input('Please Enter the Length of a Triangle: '))
width = float(input('Please Enter the Width of a Triangle: '))

# calculate the perimeter
perimeter = perimeter_of_Rectangle(length, width)
print("Perimeter of a Rectangle using", length, "and", width, " = ", perimeter)

本文固定链接:https://6yhj.com/leku-p-4496.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 手机流量卡