news 2026/7/9 15:02:59

python第一次作业

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
python第一次作业

第一题

sum = 0 for i in range(1,101): sum += 1/i print(sum)

第二题

n = int(input("请输入项数:")) sum = 0 sum1 = 1 sum2 = 0 for i in range(2,n + 1): if i % 2 != 0 : sum1 += 1/i else : sum2 += 1/i sum = sum1 - sum2 print(f"{sum}")

第三题

n = int(input("请输入n:")) sum = 1 for i in range(2,n+1): denominator = 0 for j in range(1,i+1): denominator = denominator + j sum1 = 1/denominator sum += sum1 print(f"{sum}")

第四题

a = 2 sum = 0 for i in range(6): sum += a a = a * 10 + 2 print(f"{sum}")

第五题

sum = 1 denmoinator = 1 i = 1 while 1/denmoinator > 1e-6: denmoinator = denmoinator * i sum += 1/denmoinator i += 1 print(f"{sum}")

第六题

pi = 1 f = -1 i = 3 while 1/i > 1e-6 : pi += 1 / i * f i += 2 f = -f print(f"{pi*4}")

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/7/1 21:54:10

OpenWrt Argon主题配置完全指南:从入门到精通

OpenWrt Argon主题配置完全指南:从入门到精通 【免费下载链接】luci-theme-argon Argon is a clean and tidy OpenWrt LuCI theme that allows users to customize their login interface with images or videos. It also supports automatic and manual switching …

作者头像 李华
网站建设 2026/7/3 13:55:27

Keyboard Chatter Blocker 终极使用指南:彻底解决键盘连击问题

Keyboard Chatter Blocker 终极使用指南:彻底解决键盘连击问题 【免费下载链接】KeyboardChatterBlocker A handy quick tool for blocking mechanical keyboard chatter. 项目地址: https://gitcode.com/gh_mirrors/ke/KeyboardChatterBlocker 你是否曾经在…

作者头像 李华
网站建设 2026/7/1 12:14:43

高效解决键盘连击问题:Keyboard Chatter Blocker完整使用手册

高效解决键盘连击问题:Keyboard Chatter Blocker完整使用手册 【免费下载链接】KeyboardChatterBlocker A handy quick tool for blocking mechanical keyboard chatter. 项目地址: https://gitcode.com/gh_mirrors/ke/KeyboardChatterBlocker 键盘连击是许多…

作者头像 李华
网站建设 2026/7/4 11:47:22

OpenWrt Argon主题快速美化配置指南

OpenWrt Argon主题快速美化配置指南 【免费下载链接】luci-theme-argon Argon is a clean and tidy OpenWrt LuCI theme that allows users to customize their login interface with images or videos. It also supports automatic and manual switching between light and da…

作者头像 李华
网站建设 2026/7/1 20:23:09

彻底告别Windows Defender:系统性能优化终极方案

彻底告别Windows Defender:系统性能优化终极方案 【免费下载链接】windows-defender-remover A tool which is uses to remove Windows Defender in Windows 8.x, Windows 10 (every version) and Windows 11. 项目地址: https://gitcode.com/gh_mirrors/wi/windo…

作者头像 李华
网站建设 2026/7/1 12:12:40

键盘抖动智能防护:Keyboard Chatter Blocker技术解析与实践

键盘抖动智能防护:Keyboard Chatter Blocker技术解析与实践 【免费下载链接】KeyboardChatterBlocker A handy quick tool for blocking mechanical keyboard chatter. 项目地址: https://gitcode.com/gh_mirrors/ke/KeyboardChatterBlocker 在机械键盘的使用…

作者头像 李华