首页 > Python资料 博客日记
Python头歌实验题目(2024版)
2024-09-25 12:00:05Python资料围观59次
武汉理工大学 python 头歌平台 实验题目答案
第1关 欢迎入学
a=input()
print('|++++++++++++++++++++++|')
print('| |')
print('| Welcome to WHUT |')
print('| |')
print('|++++++++++++++++++++++|')
print(f'欢迎您,{a}同学!')
第2关 整数四则运算
a=int(input())
b=int(input())
print(f'{a} + {b} = {a+b}')
print(f'{a} - {b} = {a-b}')
print(f'{a} * {b} = {a*b}')
print(f'{a} / {b} = {a/b}')
第3关 学费计算
python = 3
math = 4
en = 4
pe = 2
mt=2
ph=2
credits = (python + math+en+pe+mt+ph)
n=int(input())
print(f'你本学期选修了{credits}个学分。')
print(f'你应缴纳的学费为{credits*n}元。')
第4关 助学贷款
s=17
n=eval(input('请输入每学分学费金额:'))
m=eval(input('请输入你每个月生活费:'))
s1=s*n
t=s1+5*m
print(f'本学期你能够贷款{t*0.6:.2f}元')
第5关 计算圆的半径
AB=eval(input())
CD=eval(input())
AD=AB/2
OA=(AD**2+CD**2)/(2*CD)
print(f'{OA:.2f}')
第6关 计算弓形的面积
import math
AB=eval(input())
CD=eval(input())
AD=AB/2
OA=(AD**2+CD**2)/(2*CD)
full_jiao=2*math.asin(AD/OA)
sector=(full_jiao/(2*math.pi))*math.pi*OA**2
triangle=(1/2)*(OA**2)*math.sin(full_jiao)
arch=sector-triangle
print(f'{arch:.2f}')
第7关 地球数据计算
#7 将代码填写完整
import math
radius = 6371 * 1000
# 1. 计算地球表面积(表面积公式S = 4πR2)
surface_area = 4 * math.pi * radius **2
print(f'地球表面积为{surface_area:.2f}平方米')
# 2. 计算地球体积(体积公式是V = 4πR3/3)
volume =4 * math.pi * radius **3/3
print(f'地球体积为{volume:.2f}立方米')
# 3. 计算地球赤道的周长(圆周长公式是L = 2πR)
circumference = 2 * math.pi * radius
print(f'地球赤道周长为{circumference:.2f}米')
# 4.计算绳子与地球之间的空隙大小
new_radius = (2*math.pi*radius+1)/(2*math.pi)-radius
print(f'空隙大小为{new_radius:.2f}米')
# 5.判断老鼠是否可以从空隙中钻过
if new_radius>=0.1:
print(f'老鼠可以从空隙中钻过')
else:
print("老鼠无法通过空隙")
第8关 时间计算
# 输入小时,分钟,秒
hour = int(input())
minute = int(input())
second = int(input())
# 转换为标准时间格式
print(f"{hour:02}:{minute:02}:{second:02}")
# 计算距离午夜24点的秒数
seconds_until_midnight = (24-hour)*3600-minute*60-second
print(f"距离午夜还剩余{seconds_until_midnight}秒")
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj