首页 > 解决方案 > 画框字符界面的问题

问题描述

我正在开发终端音乐播放器。我几乎制作了画框界面。截屏]

如您所见,我打破了右边框 ( "║")。我试着做到了。但有些事情是错误的,它不起作用。看看我的代码:

import vlc
import glob
import sys
from termcolor import colored, cprint
def scanfolder(directory, extension):
    sfile = glob.glob(f'{directory}*.{extension}')
    box1 = colored("║", "yellow", attrs=["bold"])
    box2 = colored("╚", "yellow", attrs=["bold"])
    box3 = colored("═", "yellow", attrs=["bold"])
    box4 = colored("╔", "yellow", attrs=["bold"])
    box5 = colored("╗", "yellow", attrs=["bold"])
    box6 = colored("╝", "yellow", attrs=["bold"])
    x = len(directory)
    y = len(extension) + 1
    z = len(max(sfile, key=len))
    z = z - x - y + 3
    box3 = box3 * z
    print(box4 + box3 + box5)
    for i, track in enumerate(sfile):
        trackEn = box1 + str(i + 1) + ". " + str(track[x:-y])
        indent = " "
        mFactor = z - len(trackEn) #z is the most long track name length, len(trackEn) is any other track's length
        indent = indent * mFactor #space * mFactor, used to align box drawing character ║, so they can make one solid wall
        print(trackEn + indent + box1) #track name + aligning spaces + ║
    print(box2 + box3 + box6)
sext = input("Choose extension: ")
sdir = input("Choose directory: ")
cprint("""
________          ________ ______                 
___  __ \_____  _____  __ \___  /______ ______  __
__  /_/ /__  / / /__  /_/ /__  / _  __ `/__  / / /
_  ____/ _  /_/ / _  ____/ _  /  / /_/ / _  /_/ / 
/_/      _\__, /  /_/      /_/   \__,_/  _\__, /  
         /____/                          /____/   """, "yellow", "on_blue", attrs=["bold"])
scanfolder(sdir, sext)
chooseTrack = colored("Choose track", "green", attrs=["bold"])
colon = colored(": ", "green", attrs=["bold", "blink"])
trackn = input(chooseTrack + colon)

标签: pythontermcolor

解决方案



推荐阅读