Posted in Python onSeptember 04, 2017
本文实例讲述了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大数字显示效果示例
- Author -
linzj声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@