鱼C论坛

 找回密码
 立即注册
楼主: ckblt

[作品展示] 【Python】命令行表格渲染器

[复制链接]
发表于 2022-1-30 15:56:26 | 显示全部楼层
刚才那个遇到:
list1 = [[-2,-121321423243434,0],[1342,2789879798798,3],[234,59789798,6]]
时有点 Bug,所以我又改了:
list1 = [[-2,-121321423243434,0],[1342,2789879798798,3],[234,59789798,6]]
space = 0
string = ""
space_with_number = (len(str(max([each for each_row in list1 for each in each_row],key = lambda x:len(str(x)))))) * 2 + space
space = []
for i in range(len(list1)):

    space.append([int(space_with_number - len(each)) for each in [each_row for each_row in (" ".join([str(each) for each in [each for each_row in list1 for each in each_row][len([each for each_row in list1[:i + 1] for each in each_row]) - len(list1[i]):len([each for each_row in list1[:i + 1] for each in each_row])]]).split())]])
space = [each for each_line in space for each in each_line]
value = [str(each) for each_line in list1 for each in each_line]
spacer = (space_with_number - len(list1)) // (len(list1) - 1)
i = 1
for x in zip(value,space):
    if (i - 1) % len(list1[0]) == 0:
        print(spacer * "\n")
    print(x[0] + x[1] * " ",end= "")
    i += 1
print()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2022-1-30 16:07:47 | 显示全部楼层
python爱好者. 发表于 2022-1-30 15:56
刚才那个遇到:

时有点 Bug,所以我又改了:

我做了个带有线的表格
from typing import Union


def no_list_list(
    x: Union[list, tuple, set], no_tuples: bool = False, no_sets: bool = False
) -> list:
    """
    禁止列表套娃函数(使用递归)
    返回值: 列表

    ### 参数:

    x: 套娃的 列表 | 元组 | 集合
    no_tuples: 禁止元组套娃
    no_sets: 禁止集合套娃

    ### 例子:

    ```
    no_list_list( [ [ [ 1, 2, 3, 4, 5 ] ] ] )
    [1, 2, 3, 4, 5]

    no_list_list( [ [ [ 1, 2, 3, 4, 5 ], 6 ], 7 ] )
    [1, 2, 3, 4, 5, 6, 7]
    ```
    """

    new_list = []

    for i in x:
        if (
            (isinstance(i, list))
            or (no_tuples and isinstance(i, tuple))
            or (no_sets and isinstance(i, set))
        ):
            new_list.extend(no_list_list(i, no_tuples, no_sets))
        else:
            new_list.append(i)

    return new_list


class Table:
    """
    初始化 Table
    """

    def __init__(self, table: list):
        self.table = table
        self.length = len(self.table[0]), len(self.table)
        self.__check()

    """
    检查 self.table 是否合法
    """

    def __check(self):
        temp = set([len(x) for x in self.table])
        if len(temp) != 1:
            raise Exception()

    """
    渲染 self.table
    """

    def render(self):
        col_spaces = 4
        l = no_list_list(self.table)
        rendered = ""

        # 每列之间的空,存储到 col_spaces
        for i in l:
            if len(str(i)) > col_spaces - 4:
                col_spaces = len(str(i)) + 4

        # 正式渲染
        rendered += "-" * ((col_spaces + 1) * self.length[0] + 1) + "\n"
        for i_i in range(len(self.table)):
            i = self.table[i_i]
            rendered += "|"
            for j in i:
                rendered += str(j) + " " * (col_spaces - len(str(j))) + "|"

            rendered += (
                "\n" + "-" * ((col_spaces + 1) * self.length[0] + 1) + "\n"
            )

        return rendered


print(
    Table(
        [
            [-2, -121321423243434, 0],
            [1342, 2789879798798, 3],
            [234, 59789798, 6],
        ]
    ).render()
)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-1-31 13:31:37 | 显示全部楼层
昨天没看到,今天中午才看到的:
list1 = [[-2,-121321423243434,0],[1342,2789879798798,3],[234,59789798,6]]

space = 0
string = ""
space_with_number = (len(str(max([each for each_row in list1 for each in each_row],key = lambda x:len(str(x)))))) * 2 + space
space = []
for i in range(len(list1)):

    space.append([int(space_with_number - len(each)) for each in [each_row for each_row in (" ".join([str(each) for each in [each for each_row in list1 for each in each_row][len([each for each_row in list1[:i + 1] for each in each_row]) - len(list1[i]):len([each for each_row in list1[:i + 1] for each in each_row])]]).split())]])
space = [each for each_line in space for each in each_line]
value = [str(each) for each_line in list1 for each in each_line]
spacer = (space_with_number - len(list1)) // (len(list1) - 1)
print((len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2) * "-")
mark_index = []
length = sum(space[0:len(list1[0]) + 1]) + len("".join(value[0:len(list1[0]) + 1]))
for i in range(0,length - 1,space[0] + len(value[0]) + 1):
    mark_index.append(i)
d = 1
for x in zip(value,space):
    if (d - 1) % len(list1[0]) == 0 and d > 1:
        print()
        for y in range(spacer - 2):
            for i in range(len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2):
                print("|" if (i - 1) in mark_index else " ",end = "")
            print()
        print((len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2) * "-") #
    if (d - 1) % len(list1[0]) == 0:
        print(" |",end = "")
    print(x[0] + (x[1] * " "),end = "|")
    d += 1
print()
for y in range(spacer - 2):
            for i in range(len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2):
                print("|" if (i - 1) in mark_index else " ",end = "")
            print()
print((len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2) * "-")


    
这个是打印正方形表格的代码,不是长方形了,你试试!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-1-31 14:14:33 | 显示全部楼层
我又写了个可以调节 4 个模式的打印代码:
list1 = [[-2,-121321423243434,0],[1342,2789879798798,3],[234,59789798,6]]

alpha = 0 #是否带图表#设置成功!
square = 1 #是否是方形#还未设置!
space = 0
string = ""
space_with_number = (len(str(max([each for each_row in list1 for each in each_row],key = lambda x:len(str(x)))))) * 2 + space
space = []
for i in range(len(list1)):

    space.append([int(space_with_number - len(each)) for each in [each_row for each_row in (" ".join([str(each) for each in [each for each_row in list1 for each in each_row][len([each for each_row in list1[:i + 1] for each in each_row]) - len(list1[i]):len([each for each_row in list1[:i + 1] for each in each_row])]]).split())]])
space = [each for each_line in space for each in each_line]
value = [str(each) for each_line in list1 for each in each_line]
spacer = (space_with_number - len(list1)) // (len(list1) - 1)
if alpha == 1:
    print((len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2) * "-")
mark_index = []
length = sum(space[0:len(list1[0]) + 1]) + len("".join(value[0:len(list1[0]) + 1]))
for i in range(0,length - 1,space[0] + len(value[0]) + 1):
    mark_index.append(i)
d = 1
for x in zip(value,space):
    if (d - 1) % len(list1[0]) == 0 and d > 1 and square == 1:
        print()
        for y in range(spacer - 2):
            for i in range(len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2):
                print("|" if ((i - 1) in mark_index) and (alpha == 1) else " ",end = "")
            print()
        if alpha == 1:
            print((len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2) * "-")
    if (d - 1) % len(list1[0]) == 0 and d > 1 and (not square == 1):
        print()
    if (d - 1) % len(list1[0]) == 0 and alpha == 1:
        print(" |",end = "")
    print(x[0] + (x[1] * " "),end = ("|" if alpha == 1 else ""))
    d += 1
print()
if alpha == 1 and square == 1:
    for y in range(spacer - 2):
            for i in range(len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2):
                print("|" if (i - 1) in mark_index else " ",end = "")
            print()
if alpha == 1:
    print((len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + len(list1[0]) + 1 + 2) * "-")


    
#尾部空格不对齐的原因是在设置打出时不带图表时,尾部便会对不齐,这是因为在选择不带图表打印的时候,将 "-" 和 "|" 和 " |" 替换成了与原来这些字符占格数不同的数量的空格!!!
#不过这问题不大!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2022-1-31 14:16:04 | 显示全部楼层
诶,不对,上面那个 square 变量后面的注释忘更新了,应该是:
#是否是方形#设置成功!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-1 10:43:28 | 显示全部楼层
ckblt 发表于 2022-1-30 16:07
我做了个带有线的表格

我又优化了一下,现在人能看懂了!:
list1 = [[1,12,3],[4,5,6],[7,8,9]]

alpha = 0 #是否带图表#设置成功!
square = 1 #是否是方形#设置成功!
ch = 0 #设置间距#可以是负数!因为它默认有预留空间!
space_with_number = (len(str(max([each for each_row in list1 for each in each_row],key = lambda x:len(str(x)))))) * 2 + ch
space = [(space_with_number - int(each)) for each in [len(str(each)) for each in [each for each_row in list1 for each in each_row]]]
value = [str(each) for each_row in list1 for each in each_row] #列表中的每个值
spacer = (((len(list1[0][:-1]) * space_with_number) + (len(str(list1[0][-1])))) - (len(list1))) // (len(list1) - 1) // 2 #计算每列每行之间的空隙
length = len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + ((len(list1[0]) * len("|") + 1) if alpha == 1 else 0)
top_or_bottle_words = (length + 2) * "-"
mark_index = [i for i in range(1,length + 1,space_with_number + 1)]



print(top_or_bottle_words) if alpha == 1 else "" #打印开头


for i in range(len(value)): #打印中间部分
    print() if i % len(list1[0]) == 0 and i > 1 else "" #如果换行的话
        
    if i % len(list1[0]) == 0 and i > 1 and square == 1: #如果换行要打印的格式是正方形时
        for each_spacer in range(spacer):# -x
            for each_index in range(length + 2):
                print("|" if (each_index in mark_index) and (alpha == 1) else " ",end = "")
            print()
              
        print((length + 2) * "-") if alpha == 1 else "" #如果换行要打印的格式是有图表的格式时
        
    if i % len(list1[0]) == 0 and square != 1 and alpha == 1: #如果换行要打印的格式不是方形时    
        print((length + 2) * "-") if i > 1 else "" #如果换行要打印的格式是有图表的格式时    
        
    if i % len(list1[0]) == 0 and alpha == 1: #如果换行要打印的格式是图表时
        print(" |",end = "")
        
    print(value[i] + (space[i] * " "),end = ("|" if alpha == 1 else "")) #打印每行的值和空格
    
    print() if i == (len(value) - 1) else "" #如果是最后一次迭代时
    
if alpha == 1 and square == 1: #打印结尾剩余部分
    for each_spacer in range(spacer):
            for each_index in range(length + 2):
                print("|" if (each_index in mark_index) and (alpha == 1) else " ",end = "")
            print()

            
print(top_or_bottle_words) if alpha == 1 else "" #打印结尾


    
#尾部空格不对齐的原因是在设置打出时不带图表时,尾部便会对不齐。
#这是因为在选择不带图表打印的时候,将 "-" 和 "|" 和 " |" 替换成了与原来这些字符占格数不同的数量的空格!!!
#不过这问题不大!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2022-2-1 11:06:14 | 显示全部楼层
ckblt 发表于 2022-1-30 16:07
我做了个带有线的表格

你试试将 4 个功能像我这样合在一起?!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-1 11:07:52 | 显示全部楼层
python爱好者. 发表于 2022-2-1 11:06
你试试将 4 个功能像我这样合在一起?!

对了,你似乎还没有试过正方形的表格转换呢!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-1 11:08:27 | 显示全部楼层
python爱好者. 发表于 2022-2-1 11:06
你试试将 4 个功能像我这样合在一起?!

我需要亿点时间……
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-1 11:42:16 | 显示全部楼层
python爱好者. 发表于 2022-2-1 11:06
你试试将 4 个功能像我这样合在一起?!
from typing import Union


def no_list_list(
    x: Union[list, tuple, set], no_tuples: bool = False, no_sets: bool = False
) -> list:
    """
    禁止列表套娃函数(使用递归)
    返回值: 列表

    ### 参数:

    x: 套娃的 列表 | 元组 | 集合
    no_tuples: 禁止元组套娃
    no_sets: 禁止集合套娃

    ### 例子:

    ```
    no_list_list( [ [ [ 1, 2, 3, 4, 5 ] ] ] )
    [1, 2, 3, 4, 5]

    no_list_list( [ [ [ 1, 2, 3, 4, 5 ], 6 ], 7 ] )
    [1, 2, 3, 4, 5, 6, 7]
    ```
    """

    new_list = []

    for i in x:
        if (
            (isinstance(i, list))
            or (no_tuples and isinstance(i, tuple))
            or (no_sets and isinstance(i, set))
        ):
            new_list.extend(no_list_list(i, no_tuples, no_sets))
        else:
            new_list.append(i)

    return new_list


class Table:
    def __init__(self, table: list):
        """
        初始化 Table
        """
        self.table = table
        self.length = len(self.table[0]), len(self.table)
        self.__check()

    def __check(self):
        """
        检查 self.table 是否合法
        """
        temp = set([len(x) for x in self.table])
        if len(temp) != 1:
            raise Exception()

    def render(self, isChart=False, isSquare=False, spacing=4):
        """
        渲染 self.table

        参数:
        isChart: bool -- 外加线条
        isSquare: bool -- 正方形模式
        spacing: int -- 间距, 需要大于 0 
        """
        col_spaces = spacing
        l = no_list_list(self.table)
        rendered = ""

        # 每列之间的空,存储到 col_spaces
        for i in l:
            if len(str(i)) > col_spaces - spacing:
                col_spaces = len(str(i)) + spacing

        # 正式渲染
        if isChart:
            rendered += "-" * ((col_spaces + 1) * self.length[0] + 1) + "\n"
        for i_i in range(self.length[1]):
            i = self.table[i_i]
            if isChart:
                rendered += "|"
            for j in i:
                rendered += str(j) + " " * (col_spaces - len(str(j)))
                if isChart:
                    rendered += "|"
            if isSquare:
                if isChart:
                    rendered += "\n" + (
                        ("|" + " " * col_spaces) * (self.length[0] + 1) + "\n"
                    ) * (col_spaces // 3)
                elif i_i != self.length[1] - 1:
                    rendered += "\n" * (col_spaces // 3)
            else:
                rendered += "\n"
            if isChart:
                rendered += "-" * ((col_spaces + 1) * self.length[0] + 1) + "\n"

        return rendered


print(
    Table([[1, 2, 3], [4, 5, 6], [789, 123, 1], [12345, 11, 22]]).render(True, True, 4)
)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-1 11:59:47 | 显示全部楼层

这是将 4 个功能整合在一起的代码吗?
为什么我运行时修改参数它的结果却不变呢:
list1 = [[1,12,3],[4,5,6],[7,8,9]]

alpha = 0 #是否带图表#设置成功!
square = 1 #是否是方形#设置成功!
ch = 0 #设置间距#可以是负数!因为它默认有预留空间!
space_with_number = (len(str(max([each for each_row in list1 for each in each_row],key = lambda x:len(str(x)))))) * 2 + ch
space = [(space_with_number - int(each)) for each in [len(str(each)) for each in [each for each_row in list1 for each in each_row]]]
value = [str(each) for each_row in list1 for each in each_row] #列表中的每个值
spacer = (((len(list1[0][:-1]) * space_with_number) + (len(str(list1[0][-1])))) - (len(list1))) // (len(list1) - 1) // 2 #计算每列每行之间的空隙
length = len("".join(value[:len(list1[0])])) + sum(space[:len(list1[0])]) + ((len(list1[0]) * len("|") + 1) if alpha == 1 else 0)
top_or_bottle_words = (length + 2) * "-"
mark_index = [i for i in range(1,length + 1,space_with_number + 1)]



print(top_or_bottle_words) if alpha == 1 else "" #打印开头


for i in range(len(value)): #打印中间部分
    print() if i % len(list1[0]) == 0 and i > 1 else "" #如果换行的话
        
    if i % len(list1[0]) == 0 and i > 1 and square == 1: #如果换行要打印的格式是正方形时
        for each_spacer in range(spacer):# -x
            for each_index in range(length + 2):
                print("|" if (each_index in mark_index) and (alpha == 1) else " ",end = "")
            print()
              
        print((length + 2) * "-") if alpha == 1 else "" #如果换行要打印的格式是有图表的格式时
        
    if i % len(list1[0]) == 0 and square != 1 and alpha == 1: #如果换行要打印的格式不是方形时    
        print((length + 2) * "-") if i > 1 else "" #如果换行要打印的格式是有图表的格式时    
        
    if i % len(list1[0]) == 0 and alpha == 1: #如果换行要打印的格式是图表时
        print(" |",end = "")
        
    print(value[i] + (space[i] * " "),end = ("|" if alpha == 1 else "")) #打印每行的值和空格
    
    print() if i == (len(value) - 1) else "" #如果是最后一次迭代时
    
if alpha == 1 and square == 1: #打印结尾剩余部分
    for each_spacer in range(spacer):
            for each_index in range(length + 2):
                print("|" if (each_index in mark_index) and (alpha == 1) else " ",end = "")
            print()

            
print(top_or_bottle_words) if alpha == 1 else "" #打印结尾


    
#尾部空格不对齐的原因是在设置打出时不带图表时,尾部便会对不齐。
#这是因为在选择不带图表打印的时候,将 "-" 和 "|" 和 " |" 替换成了与原来这些字符占格数不同的数量的空格!!!
#不过这问题不大!



from typing import Union


def no_list_list(
    x: Union[list, tuple, set], no_tuples: bool = False, no_sets: bool = False
) -> list:
    """
    禁止列表套娃函数(使用递归)
    返回值: 列表

    ### 参数:

    x: 套娃的 列表 | 元组 | 集合
    no_tuples: 禁止元组套娃
    no_sets: 禁止集合套娃

    ### 例子:

    ```
    no_list_list( [ [ [ 1, 2, 3, 4, 5 ] ] ] )
    [1, 2, 3, 4, 5]

    no_list_list( [ [ [ 1, 2, 3, 4, 5 ], 6 ], 7 ] )
    [1, 2, 3, 4, 5, 6, 7]
    ```
    """

    new_list = []

    for i in x:
        if (
            (isinstance(i, list))
            or (no_tuples and isinstance(i, tuple))
            or (no_sets and isinstance(i, set))
        ):
            new_list.extend(no_list_list(i, no_tuples, no_sets))
        else:
            new_list.append(i)

    return new_list


class Table:
    def __init__(self, table: list):
        """
        初始化 Table
        """
        self.table = table
        self.length = len(self.table[0]), len(self.table)
        self.__check()

    def __check(self):
        """
        检查 self.table 是否合法
        """
        temp = set([len(x) for x in self.table])
        if len(temp) != 1:
            raise Exception()

    def render(self, isChart=False, isSquare=False, spacing=4):#####这里 isChart 和 isSquare 改变后输出的结果却一直不变!
        """
        渲染 self.table

        参数:
        isChart: bool -- 外加线条
        isSquare: bool -- 正方形模式
        spacing: int -- 间距, 需要大于 0 
        """
        col_spaces = spacing
        l = no_list_list(self.table)
        rendered = ""

        # 每列之间的空,存储到 col_spaces
        for i in l:
            if len(str(i)) > col_spaces - spacing:
                col_spaces = len(str(i)) + spacing

        # 正式渲染
        if isChart:
            rendered += "-" * ((col_spaces + 1) * self.length[0] + 1) + "\n"
        for i_i in range(self.length[1]):
            i = self.table[i_i]
            if isChart:
                rendered += "|"
            for j in i:
                rendered += str(j) + " " * (col_spaces - len(str(j)))
                if isChart:
                    rendered += "|"
            if isSquare:
                if isChart:
                    rendered += "\n" + (
                        ("|" + " " * col_spaces) * (self.length[0] + 1) + "\n"
                    ) * (col_spaces // 3)
                elif i_i != self.length[1] - 1:
                    rendered += "\n" * (col_spaces // 3)
            else:
                rendered += "\n"
            if isChart:
                rendered += "-" * ((col_spaces + 1) * self.length[0] + 1) + "\n"

        return rendered


print(Table(list1).render(True, True, 4))
上面是我的,下面是你的,结果明显不一样,你把参数再改一下,它的结果还是不会变:
[code]1   12  3   
              
4   5   6   
              
7   8   9   
----------------------
|1     |12    |3     |
|      |      |      |      
|      |      |      |      
----------------------
|4     |5     |6     |
|      |      |      |      
|      |      |      |      
----------------------
|7     |8     |9     |
|      |      |      |      
|      |      |      |      
----------------------

还是说你还没合起来这些功能,这是你写的转换为正方形带表格的格式打印出来??
但是,不得不说,做的挺好的!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-1 12:01:59 | 显示全部楼层
print(Table(list1).render(False, True, 4))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-1 12:02:34 | 显示全部楼层
python爱好者. 发表于 2022-2-1 11:59
这是将 4 个功能整合在一起的代码吗?
为什么我运行时修改参数它的结果却不变呢:
print(Table(list1).render(False, True, 4))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2022-2-1 12:06:53 | 显示全部楼层

原来如此,是我的食用方法错了,抱歉!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-1 12:09:47 | 显示全部楼层
但是这样条件下打出来的似乎不像正方形啊:
list1 = [[1,897977912,3],[4,5,6],[7,8,9],[213213,213213,213],[14,214,124]]

print(Table(list1).render(1, 1, 4))
结果是:
-------------------------------------------
|1            |897977912    |3            |
|             |             |             |             
|             |             |             |             
|             |             |             |             
|             |             |             |             
-------------------------------------------
|4            |5            |6            |
|             |             |             |             
|             |             |             |             
|             |             |             |             
|             |             |             |             
-------------------------------------------
|7            |8            |9            |
|             |             |             |             
|             |             |             |             
|             |             |             |             
|             |             |             |             
-------------------------------------------
|213213       |213213       |213          |
|             |             |             |             
|             |             |             |             
|             |             |             |             
|             |             |             |             
-------------------------------------------
|14           |214          |124          |
|             |             |             |             
|             |             |             |             
|             |             |             |             
|             |             |             |             
-------------------------------------------
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-1 12:10:18 | 显示全部楼层
长是不是有点太长了?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-1 12:10:48 | 显示全部楼层

长是不是有点太长了?!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-1 12:13:03 | 显示全部楼层
python爱好者. 发表于 2022-2-1 12:09
但是这样条件下打出来的似乎不像正方形啊:

结果是:

可能是字体不一样
Snipaste_2022-02-01_12-11-22.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-1 12:13:41 | 显示全部楼层
那我的为什么可以?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-1 12:16:17 | 显示全部楼层
Python 的两行的宽度的视觉效果是只等于一列的宽度,所以我在我的代码里用了 "\\ 2",
但是你算一下它的长和宽相等吗?所以应该和这个无关吧!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 13:38

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表