Python2实现的LED大数字显示效果示例

本文实例讲述了Python2实现的LED大数字显示效果。分享给大家供大家参考,具体如下:

#filename:bigNumber.py

zero=['*******','* *','* *','* *','* *','* *','*******']

one=[' *',' *',' *',' *',' *',' *',' *']

two=['*******',' *',' *','*******','* ','* ','*******']

three=['*******',' *',' *','*******',' *',' *','*******']

four=['* *','* *','* *','*******',' *',' *',' *']

five=['*******','* ','* ','*******',' *',' *','*******']

six=['*******','* ','* ','*******','* *','* *','*******']

seven=['*******',' *',' *',' *',' *',' *',' *']

eight=['*******','* *','* *','*******','* *','* *','*******']

nine=['*******','* *','* *','*******',' *',' *','*******']

numArr=[zero,one,two,three,four,five,six,seven,eight,nine]

while True:

try:

#input a number

num = raw_input("Enter a number:")

for i in range(0,7):

line=''

j=0

while j<len(num):

n=int(num[j])

line+=numArr[n][i]+' '

j+=1

print line

except ValueError as err:

print err

运行效果如下图:

更多Python相关内容感兴趣的读者可查看本站专题:《Python列表(list)操作技巧总结》、《Python编码操作技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》

希望本文所述对大家Python程序设计有所帮助。

以上是 Python2实现的LED大数字显示效果示例 的全部内容, 来源链接: utcz.com/z/329344.html

回到顶部