python - 学习 Python 并需要帮助在不影响其余代码的情况下移动符号

标签 python formatting

我正在学习 Python,需要一些帮助来将我的符号向左移动几个空格。我已完成作业,不寻求作业帮助。我只是想让它在我这边看起来更好看。在我在下面的链接中添加的图片中,您可以看到“#”太靠右了。我希望它位于偶数旁边。我曾尝试在我的打印语句中留出更多空间,但所做的只是移动我的整个表格。如何让“#”紧挨着我的偶数?

这是我的代码。

#ask for user input on size of Multiplication Table.
size = int(input("What size Multiplication Table would you like? (2-10):"))
while (size <2) or (size >10):
    print("Invalid entery! Enter a Number Between 2 and 10")
    size = int(input("What size Multiplication Table would you like? (2-10):"))   
print()
print()

#dispaly header
print("                    --- Multiplication Table(",size,"x",size,") ---")
print("  ",end="")
size += 1
for h in range(1,11):
    if h == 10:
        print("    ",h, end="  ")
    else:
        print("     ",h, end="  ")
print()
for h in range(1,100):
    print('-',end='')
print()

#display Multiplication Table
#outer loop
for a in range(1,size):
    if a ==10:
        print('',a,'|',end='')
    else:
        print('',a,' |',end='')
        
#inner loop        
    for b in range(1,size):
        result = a * b
        if result >=100:
            print(' ',result, end='   ')
        elif result >=10:
            print(' ',result, end='    ')
        else:
            print('  ', result, end='    ')
            
# for putting '#' at the end of even numbers            
        if result %2==0:
            print('#', end='')
        elif result == 100:
            print('', end='')
        else:
            print(' ', end='')
    print()

最佳答案

我对您的内部循环进行了最小修改,以产生所需的效果:

    for b in range(1,size):
        result = a * b
# for putting '#' at the end of even numbers            
        if result %2==0:
            end_str='#'
        elif result == 100:
            end_str=''
        else:
            end_str=' '
        if result >=100:
            print(' ',result, end=end_str+'   ')
        elif result >=10:
            print(' ',result, end=end_str+'    ')
        else:
            print('  ', result, end=end_str+'    ')

修改后的输出:

        1        2        3        4        5        6        7        8        9       10  
---------------------------------------------------------------------------------------------------
 1  |   1        2#       3        4#       5        6#       7        8#       9       10#    
 2  |   2#       4#       6#       8#      10#      12#      14#      16#      18#      20#    
 3  |   3        6#       9       12#      15       18#      21       24#      27       30#    
 4  |   4#       8#      12#      16#      20#      24#      28#      32#      36#      40#    
 5  |   5       10#      15       20#      25       30#      35       40#      45       50#    
 6  |   6#      12#      18#      24#      30#      36#      42#      48#      54#      60#    
 7  |   7       14#      21       28#      35       42#      49       56#      63       70#    
 8  |   8#      16#      24#      32#      40#      48#      56#      64#      72#      80#    
 9  |   9       18#      27       36#      45       54#      63       72#      81       90#    
 10 |  10#      20#      30#      40#      50#      60#      70#      80#      90#      100#   

关于python - 学习 Python 并需要帮助在不影响其余代码的情况下移动符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65961085/

相关文章:

python - 不使用 numpy 数组转置 h5py 数据集

python - 在main中的Label中写入类变量

java - 文本文件的字节加密

formatting - 引用格式和 hyperref 包

python - 如何在失败时恢复 Prefect 流程而不必重新运行整个流程?

python - 提高缩小图像的准确性

python - 如何在python中将数组保存到文本文件?

r - R中范围数据的移动平均值

c# - VS2010格式化在 "empty"控制流语句后插入空格

c - 在 C 中打印十六进制的前导零