摘要: from random import* from time import* DARTS=10001000 hits=0.0 start=perf_counter() for i in range(1,DARTS+1): x,y=random(),random() dist=pow(x2+y2,0.5 阅读全文
posted @ 2024-11-10 15:49 xc3535231695 阅读(1) 评论(0) 推荐(0) 编辑
摘要: while True: try: s,t=eval(input("请输入身高,请输入体重:"))#检验数据是否存在异常 BMI=t/pow(s,2) break except NameError:#如果数据不是整数的话则报错 continue print("BMI数值为:{:.2f}".format 阅读全文
posted @ 2024-10-31 10:44 xc3535231695 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-10-25 13:05 xc3535231695 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-10-25 12:54 xc3535231695 阅读(0) 评论(0) 推荐(0) 编辑
摘要: import time scale=10 print(" 执行开始 ") for i in range(scale+1): a='**'i b='..'(scale-i) c=(i/scale)*100 print("{:^3.0f}%[{}->{}]".format(c,a,b)) time.sl 阅读全文
posted @ 2024-10-23 12:55 xc3535231695 阅读(1) 评论(0) 推荐(0) 编辑
摘要: from turtle import* for i in range(3): fd(200) right(120) left(60) fd(200) right(120) fd(400) seth(180) fd(400) seth(60) fd(200) done 阅读全文
posted @ 2024-10-19 16:51 xc3535231695 阅读(0) 评论(0) 推荐(0) 编辑
摘要: from turtle import * r=10 d=10 n=25 speed(100) for i in range(2*n): fd(r) left(90) fd(r) left(90) r+=d done 阅读全文
posted @ 2024-10-14 10:52 xc3535231695 阅读(3) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-10-14 10:36 xc3535231695 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-10-13 16:09 xc3535231695 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-10-11 14:47 xc3535231695 阅读(0) 评论(0) 推荐(0) 编辑