会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
lsssy
博客园
首页
新随笔
联系
订阅
管理
2023年11月22日
7段数码管绘制
摘要: 7段数码管绘制 运行代码 import turtle, datetime def drawGap(): # 绘制数码管间隔 turtle.penup() turtle.fd(5) def drawLine(draw): # 绘制单段数码管 drawGap() turtle.pendown() if
阅读全文
posted @ 2023-11-22 16:52 李森阳
阅读(29)
评论(0)
推荐(0)
2023年11月1日
读书笔记
摘要: # 超市收银抹零 # 尝试对金额四舍五入输出 # 根据提示语键盘输入数字money = float(input('请输入收银金额(元):')) # 类型转换,并打印print('抹零后金额为(元):' + str(int(money))) #04计算学生成绩的分差和平均分a = int(input(
阅读全文
posted @ 2023-11-01 01:06 李森阳
阅读(28)
评论(0)
推荐(0)
2023年10月31日
Python算圆周率
摘要: import sysimport time def progress_bar(): for i in range(1, 101): print("\r", end="") print("Download progress: {}%: ".format(i), "▋" * (i // 2), end=
阅读全文
posted @ 2023-10-31 21:39 李森阳
阅读(28)
评论(0)
推荐(0)
公告