PHP前端开发

使用Python2完成LED显示大数字的效果实例

百变鹏仔 3小时前 #Python
文章标签 实例

这篇文章主要介绍了python2实现的led大数字显示效果,涉及python的简单交互与列表相关使用技巧,需要的朋友可以参考下

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


#filename:bigNumber.pyzero=['*******','*   *','*   *','*   *','*   *','*   *','*******']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><p>运行效果如下图:</p><p><img src="https://img.php.cn/upload/article/000/000/007/39722014c1981d413ea53fa5af2314bc-0.jpg" alt=""></p></len>