Python3 在同一行打印 - 7 段设备格式的数字

Python3 Print on Same Line - Numbers in 7-Segment-Device Format

我是 Python 的新手,很难将输出打印在一行上。

这与在线 Python class 学习 Python Essentials Lab 5.1.10.6 和打印到 7 段设备有关。如果您不熟悉 7 段设备,请参阅 Wikipedia

我没有使用任何外部设备。我只需要它打印到我自己的终端。我发现的所有其他 Whosebug 解决方案都与使用实际设备有关,但没有帮助。

感谢您的帮助。

期望输出

###   ##  ###  ###  # #  ###  ###  ###  ###  ###  
# #  ###    #    #  # #  #    #      #  # #  # #  
# #   ##  ###  ###  ###  ###  ###    #  ###  ###  
# #   ##  #      #    #    #  # #    #  # #    #  
###   ##  ###  ###    #  ###  ###    #  ###  ###

我的代码

# clear screen each time you run the script
import os
clear = lambda: os.system('cls')
clear()
# 
# Dictionary of (number:7-segment-hash)
dict1 = {
    '0':('###','# #','# #','# #','###'),
    '1':('#####'),
    '2':('###','  #','###','#  ','###'),
    '3':('###','  #','###','  #','###'),
    '4':('# #','# #','###','  #','  #'),
    '5':('###','#  ','###','  #','###'),
    '6':('###','#  ','###','# #','###'),
    '7':('###','  #','  #','  #','  #'),
    '8':('###','# #','###','# #','###'),
    '9':('###','# #','###','  #','###')
}

# Function to print numbers in 7-segment-device format
def fun_PrintNums(num):
    if num < 0 or num % 1 > 0 or type(num)!=int:    # if num is NOT a positive whole integer
        return "Invalid entry, please try again"
    else: 
        display = [' ']
        for i in str(num):      # convert 'num' to STRING; for each "number" in string 'num'


#'''Option 1: works, but prints nums vertically instead of side-by-side; Return=None ''' #
            for char in dict1[i]:
                print(*char)
print(fun_PrintNums(int(input("Enter any string of whole numbers: "))))
#----------------------------------------------------------------#


#''' Option 2: Return works, but still vertical and not spaced out ''' #
#             for char in dict1[i]:
#                 display.append(char)
#     return display
# print('\n'.join(fun_PrintNums(int(input("Enter any string of whole numbers: ")))))
#---------------------------------------------------------------------#

#''' Option 3: 'display' row1 offset; spaced out as desired, but vertical; Return=None''' #
#             for char in dict1[i]:                
#                 display += char
#                 display += '\n'
#     a = print(*display,end='')
#     return a
# print(fun_PrintNums(int(input("Enter any string of whole numbers: "))))
#---------------------------------------------------------------#

选项 1 输出 有效,但垂直打印 nums 而不是并排打印; Return=None

# # #
    #
# # #
#    
# # #
# # #
    #
# # #
    #
# # #
None 

选项 2 输出 Return 有效,但仍然垂直且没有间隔。


###
  #
###
#  
###
###
  #
###
  #
###

选项 3 输出 'display' row1偏移量;根据需要间隔开,但垂直; Return=None

  # # # 
     #  
 # # #  
 #      
 # # #  
 # # #  
     #  
 # # #  
     #  
 # # #  
None    

你的问题是你在下一个数字之前打印每个数字,但你需要在下一个数字之前打印每个 。作为一个简化的例子:

dict1 = {
    '0':('###','# #','# #','# #','###'),
    '1':(' ##','###',' ##',' ##',' ##'),
    '2':('###','  #','###','#  ','###'),
    '3':('###','  #','###','  #','###'),
    '4':('# #','# #','###','  #','  #'),
    '5':('###','#  ','###','  #','###'),
    '6':('###','#  ','###','# #','###'),
    '7':('###','  #','  #','  #','  #'),
    '8':('###','# #','###','# #','###'),
    '9':('###','# #','###','  #','###')
}

num = '0123456789'

for row in range(len(dict1['0'])):
    print(' '.join(dict1[i][row] for i in num))

输出:

###  ## ### ### # # ### ### ### ### ###
# # ###   #   # # # #   #     # # # # #
# #  ## ### ### ### ### ###   # ### ###
# #  ## #     #   #   # # #   # # #   #
###  ## ### ###   # ### ###   # ### ###

如果您不想在 join 中使用列表推导式,您可以像这样展开它:

for row in range(len(dict1['0'])):
    line = []
    for i in num:
        line.append(dict1[i][row])
    print(' '.join(line))