阅读量:0
要在Python中输出带框文字,你可以使用以下代码:
def print_box_text(text): length = len(text) + 4 print("*" * length) print("* " + text + " *") print("*" * length) text = "Hello, this is a box text!" print_box_text(text)
运行以上代码,将输出以下内容:
******************************* * Hello, this is a box text! * *******************************