2023年11月21日

摘要: import random def monte_carlo_pi(num): """接收正整数为参数,表示随机点的数量,利用蒙特卡洛方法计算圆周率 返回值为表示圆周率的浮点数""" # Begin a = 0 count = 0 while a < times: x, y = random.unif 阅读全文

posted @ 2023-11-21 22:02 奇诺qwq 阅读(27) 评论(0) 推荐(0) 编辑

摘要: import turtle import datetime import time def draw_gap(): # 画数码间隔 turtle.penup() turtle.fd(5) def draw_line(draw): # 画单段数码管 draw_gap() turtle.pendown( 阅读全文

posted @ 2023-11-21 11:41 奇诺qwq 阅读(26) 评论(0) 推荐(0) 编辑