摘要:
使用Python自带的print()实现的类似便签(不知道该怎么描述,描述不恰当还请见谅)的输出效果 源码 import string class FramePrint(): CENTER = 'center' RIGHT = 'right' LEFT = 'left' TOP = 'top' BO 阅读全文
posted @ 2025-05-30 11:17
天空之城00
阅读(7)
评论(0)
推荐(0)
摘要:
这是我自己使用 Python 原生 print 函数写的一个用来将内容以表格的形式进行格式化输出的模块 源码 import string class TablePrint: CENTER = 'center' RIGHT = 'right' LEFT = 'left' def __init__(se 阅读全文
posted @ 2025-05-30 11:15
天空之城00
阅读(30)
评论(0)
推荐(0)