Python 打印自己设计的字体的实例讲解
程序员文章站
2022-04-13 10:05:15
通过对 26 个字母的设定,设置自己要输出的字体。name = "runoob" # 接收用户输入# name = input("输入你的名字: \n\n") lngth = len(name) l...
通过对 26 个字母的设定,设置自己要输出的字体。
name = "runoob" # 接收用户输入 # name = input("输入你的名字: \n\n") lngth = len(name) l = "" for x in range(0, lngth): c = name[x] c = c.upper() if (c == "a"): print("..######..\n..#....#..\n..######..", end = " ") print("\n..#....#..\n..#....#..\n\n") elif (c == "b"): print("..######..\n..#....#..\n..#####...", end = " ") print("\n..#....#..\n..######..\n\n") elif (c == "c"): print("..######..\n..#.......\n..#.......", end = " ") print("\n..#.......\n..######..\n\n") elif (c == "d"): print("..#####...\n..#....#..\n..#....#..", end = " ") print("\n..#....#..\n..#####...\n\n") elif (c == "e"): print("..######..\n..#.......\n..#####...", end = " ") print("\n..#.......\n..######..\n\n") elif (c == "f"): print("..######..\n..#.......\n..#####...", end = " ") print("\n..#.......\n..#.......\n\n") elif (c == "g"): print("..######..\n..#.......\n..#.####..", end = " ") print("\n..#....#..\n..#####...\n\n") elif (c == "h"): print("..#....#..\n..#....#..\n..######..", end = " ") print("\n..#....#..\n..#....#..\n\n") elif (c == "i"): print("..######..\n....##....\n....##....", end = " ") print("\n....##....\n..######..\n\n") elif (c == "j"): print("..######..\n....##....\n....##....", end = " ") print("\n..#.##....\n..####....\n\n") elif (c == "k"): print("..#...#...\n..#..#....\n..##......", end = " ") print("\n..#..#....\n..#...#...\n\n") elif (c == "l"): print("..#.......\n..#.......\n..#.......", end = " ") print("\n..#.......\n..######..\n\n") elif (c == "m"): print("..#....#..\n..##..##..\n..#.##.#..", end = " ") print("\n..#....#..\n..#....#..\n\n") elif (c == "n"): print("..#....#..\n..##...#..\n..#.#..#..", end = " ") print("\n..#..#.#..\n..#...##..\n\n") elif (c == "o"): print("..######..\n..#....#..\n..#....#..", end = " ") print("\n..#....#..\n..######..\n\n") elif (c == "p"): print("..######..\n..#....#..\n..######..", end = " ") print("\n..#.......\n..#.......\n\n") elif (c == "q"): print("..######..\n..#....#..\n..#.#..#..", end = " ") print("\n..#..#.#..\n..######..\n\n") elif (c == "r"): print("..######..\n..#....#..\n..#.##...", end = " ") print("\n..#...#...\n..#....#..\n\n") elif (c == "s"): print("..######..\n..#.......\n..######..", end = " ") print("\n.......#..\n..######..\n\n") elif (c == "t"): print("..######..\n....##....\n....##....", end = " ") print("\n....##....\n....##....\n\n") elif (c == "u"): print("..#....#..\n..#....#..\n..#....#..", end = " ") print("\n..#....#..\n..######..\n\n") elif (c == "v"): print("..#....#..\n..#....#..\n..#....#..", end = " ") print("\n...#..#...\n....##....\n\n") elif (c == "w"): print("..#....#..\n..#....#..\n..#.##.#..", end = " ") print("\n..##..##..\n..#....#..\n\n") elif (c == "x"): print("..#....#..\n...#..#...\n....##....", end = " ") print("\n...#..#...\n..#....#..\n\n") elif (c == "y"): print("..#....#..\n...#..#...\n....##....", end = " ") print("\n....##....\n....##....\n\n") elif (c == "z"): print("..######..\n......#...\n.....#....", end = " ") print("\n....#.....\n..######..\n\n") elif (c == " "): print("..........\n..........\n..........", end = " ") print("\n..........\n\n") elif (c == "."): print("----..----\n\n")
执行以上代码输出结果为:
..######..
..#....#..
..#.##...
..#...#...
..#....#..
..#....#..
..#....#..
..#....#..
..#....#..
..######..
..#....#..
..##...#..
..#.#..#..
..#..#.#..
..#...##..
..######..
..#....#..
..#....#..
..#....#..
..######..
..######..
..#....#..
..#....#..
..#....#..
..######..
..######..
..#....#..
..#####...
..#....#..
..######..
实例扩展
python打印彩色字体的方法
################################################################# import ctypes std_input_handle = -10 std_output_handle = -11 std_error_handle = -12 foreground_black = 0x0 foreground_blue = 0x01 # text color contains blue. foreground_green = 0x02 # text color contains green. foreground_red = 0x04 # text color contains red. foreground_intensity = 0x08 # text color is intensified. background_blue = 0x10 # background color contains blue. background_green = 0x20 # background color contains green. background_red = 0x40 # background color contains red. background_intensity = 0x80 # background color is intensified. class color: ''''''' see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winprog/winprog/windows_api_reference.asp for information on windows apis.''' std_out_handle = ctypes.windll.kernel32.getstdhandle(std_output_handle) def set_cmd_color(self, color, handle=std_out_handle): """(color) -> bit example: set_cmd_color(foreground_red | foreground_green | foreground_blue | foreground_intensity) """ bool = ctypes.windll.kernel32.setconsoletextattribute(handle, color) return bool def reset_color(self): self.set_cmd_color(foreground_red | foreground_green | foreground_blue) def print_red_text(self, print_text): self.set_cmd_color(foreground_red | foreground_intensity) print print_text self.reset_color() def print_green_text(self, print_text): self.set_cmd_color(foreground_green | foreground_intensity) print print_text self.reset_color() def print_blue_text(self, print_text): self.set_cmd_color(foreground_blue | foreground_intensity) print print_text self.reset_color() def print_red_text_with_blue_bg(self, print_text): self.set_cmd_color(foreground_red | foreground_intensity | background_blue | background_intensity) print print_text self.reset_color() clr = color() # clr.print_red_text('red') # clr.print_green_text('green') # clr.print_blue_text('blue') # clr.print_red_text_with_blue_bg('background') ###########################################################
到此这篇关于python 打印自己设计的字体的实例讲解的文章就介绍到这了,更多相关python 打印自己设计的字体内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!