1.华氏度到摄氏度转换:
def fahrenheit_to_celsius(): celsius=(fahrenheit-32)*5/9 return celsius fahrenheit=float(input("Enter the Fahrenheit:")) celsius=fahrenheit_to_celsius() print("Celsius :",round(celsius,1)
Enter the Fahrenheit:102.3 Celsius : 39.1
2.摄氏度到华氏度转换:
def celsius_to_fahrenheit(): fahrenheit=celsius*9/5+32 return fahrenheit celsius=float(input("Enter the Celsius:")) fahrenheit=celsius_to_fahrenheit() print("Fahrenheit :",round(fahrenheit,1))
Enter the Celsius:39.1 Fahrenheit : 102.4
3.英尺到米换算:
def feet_to_meter(): meter=feet*0.3048 return meter feet=float(input("Enter the Feet:")) meter=feet_to_meter() print("Meter :",round(meter,3))
Enter the Feet:12 Meter : 3.658
4.求正方形的面积:
def area_of_square(): area=side**2 return area side=float(input("Enter the Side:")) area=area_of_square() print("Area :",round(area,2))
Enter the Side:12.3 Area : 151.29
5.求矩形的面积:
def area_of_rectangle(): area=length*width return area length=float(input("Enter the Length:")) width=float(input("Enter the Width:")) area=area_of_rectangle() print("Area :",round(area,2))
Enter the Length:13.4 Enter the Width:9.6 Area : 128.64
6.求圆的面积:
def area_of_circle(): area=3.14*radius**2 return area radius=float(input("Enter the Radius:")) area=area_of_circle() print("Area :",round(area,2))
Enter the Radius:7.2 Area : 162.78
7.SGD 到 INR 换算:
def sgd_to_inr(): inr=63.14*sgd return inr sgd=float(input("Enter the SGD:")) inr=sgd_to_inr() print("INR:",round(inr,2))
Enter the SGD:23 INR: 1452.22
8.新加坡时间与印度标准时间换算:
from datetime import datetime, timedelta current= datetime.now() current_time= current.strftime("%H:%M:%S") print("Singapore Time:",current_time) difference= timedelta(hours=2, minutes=30) print("Difference between Singapore and Indian Time",difference) difference=current-difference print("Indian Time:",difference.strftime("%H:%M:%S"))
Singapore Time: 01:32:00 Difference between Singapore and Indian Time 2:30:00 Indian Time: 23:02:00
9) 7, 10, 8, 11, 9, 12, 10
no=7 count=0 while count <pre class="brush:php;toolbar:false">7, 10, 8, 11, 9, 12, 10
10) 36, 34, 30, 28, 24, 22
no=36 difference=2 while no>=22: print(no,end=" ") if difference==2: no=no-difference difference+=2 else: no=no-difference difference-=2
36, 34, 30, 28, 24, 22
11) 22, 21, 23, 22, 24, 23
no=22 difference=1 while no <pre class="brush:php;toolbar:false">22, 21, 23, 22, 24, 23
12) 53, 53, 40, 40, 27, 27
no=53 difference=13 while no>=27: print(no, end=" ") print(no, end=" ") if difference==13: no=no-difference
53, 53, 40, 40, 27, 27
13) 21, 9, 21, 11, 21, 13, 21
odd_no=21 even_no=9 count=0 while count <pre class="brush:php;toolbar:false">21, 9, 21, 11, 21, 13, 21
14) 3, 4, 7, 8, 11, 12
no=3 difference=1 while no <pre class="brush:php;toolbar:false">3, 4, 7, 8, 11, 12
15) 14, 28, 20, 40, 32, 64
no=14 count=0 while count <pre class="brush:php;toolbar:false">14, 28, 20, 40, 32, 64
以上是周末任务的详细内容。更多信息请关注PHP中文网其他相关文章!

本教程演示如何使用Python处理Zipf定律这一统计概念,并展示Python在处理该定律时读取和排序大型文本文件的效率。 您可能想知道Zipf分布这个术语是什么意思。要理解这个术语,我们首先需要定义Zipf定律。别担心,我会尽量简化说明。 Zipf定律 Zipf定律简单来说就是:在一个大型自然语言语料库中,最频繁出现的词的出现频率大约是第二频繁词的两倍,是第三频繁词的三倍,是第四频繁词的四倍,以此类推。 让我们来看一个例子。如果您查看美国英语的Brown语料库,您会注意到最频繁出现的词是“th

处理嘈杂的图像是一个常见的问题,尤其是手机或低分辨率摄像头照片。 本教程使用OpenCV探索Python中的图像过滤技术来解决此问题。 图像过滤:功能强大的工具 图像过滤器

本文解释了如何使用美丽的汤库来解析html。 它详细介绍了常见方法,例如find(),find_all(),select()和get_text(),以用于数据提取,处理不同的HTML结构和错误以及替代方案(SEL)

Python是数据科学和处理的最爱,为高性能计算提供了丰富的生态系统。但是,Python中的并行编程提出了独特的挑战。本教程探讨了这些挑战,重点是全球解释

本文比较了Tensorflow和Pytorch的深度学习。 它详细介绍了所涉及的步骤:数据准备,模型构建,培训,评估和部署。 框架之间的关键差异,特别是关于计算刻度的

本教程演示了在Python 3中创建自定义管道数据结构,利用类和操作员超载以增强功能。 管道的灵活性在于它能够将一系列函数应用于数据集的能力,GE

Python 对象的序列化和反序列化是任何非平凡程序的关键方面。如果您将某些内容保存到 Python 文件中,如果您读取配置文件,或者如果您响应 HTTP 请求,您都会进行对象序列化和反序列化。 从某种意义上说,序列化和反序列化是世界上最无聊的事情。谁会在乎所有这些格式和协议?您想持久化或流式传输一些 Python 对象,并在以后完整地取回它们。 这是一种在概念层面上看待世界的好方法。但是,在实际层面上,您选择的序列化方案、格式或协议可能会决定程序运行的速度、安全性、维护状态的自由度以及与其他系

Python的statistics模块提供强大的数据统计分析功能,帮助我们快速理解数据整体特征,例如生物统计学和商业分析等领域。无需逐个查看数据点,只需查看均值或方差等统计量,即可发现原始数据中可能被忽略的趋势和特征,并更轻松、有效地比较大型数据集。 本教程将介绍如何计算平均值和衡量数据集的离散程度。除非另有说明,本模块中的所有函数都支持使用mean()函数计算平均值,而非简单的求和平均。 也可使用浮点数。 import random import statistics from fracti


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

SublimeText3汉化版
中文版,非常好用

mPDF
mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),

SublimeText3 Linux新版
SublimeText3 Linux最新版

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

适用于 Eclipse 的 SAP NetWeaver 服务器适配器
将Eclipse与SAP NetWeaver应用服务器集成。