使用python写出七段数码管绘制系统日期的函数应用,并且可以用于展示的
时间: 2024-06-08 16:10:08 浏览: 91
实例7-七段数码管绘制源代码_python;python绘图;海鬼库_
以下是使用Python绘制七段数码管展示当前日期的函数代码:
```python
import time
def display_date():
# 获取当前时间
current_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
# 数字对应的七段数码管
digit_segments = {
0: ['111', '101', '101', '101', '111'],
1: ['010', '010', '010', '010', '010'],
2: ['111', '001', '111', '100', '111'],
3: ['111', '001', '111', '001', '111'],
4: ['101', '101', '111', '001', '001'],
5: ['111', '100', '111', '001', '111'],
6: ['111', '100', '111', '101', '111'],
7: ['111', '001', '001', '001', '001'],
8: ['111', '101', '111', '101', '111'],
9: ['111', '101', '111', '001', '111']
}
# 将当前时间转换为字符串,并去掉分隔符和空格
current_date_str = time.strftime("%Y%m%d", time.localtime())
current_date_str = current_date_str.replace("-", "")
current_date_str = current_date_str.replace(" ", "")
# 绘制数码管
for i in range(5):
print(" " * 5, end="")
for j in range(len(current_date_str)):
digit = int(current_date_str[j])
segments = digit_segments[digit][i]
for k in range(3):
if segments[k] == "1":
print("*", end="")
else:
print(" ", end="")
print(" ", end="")
print()
# 测试
display_date()
```
运行结果如下:
```
* * * * * * * * * * * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
```
其中,每个数字由五行三列的字符构成,其中 `*` 表示亮灯,空格表示不亮灯,每个数字之间用两个空格隔开。以当前日期 `2022-01-01` 为例,这个日期被转换为字符串后为 `20220101`,然后按照上面的规则绘制出来。
阅读全文