import pyperclip from art import * # Create ASCII art for the letter "P" in "PES" text_art = text2art("P", "block") text_art += "n" + text2art("E", "block") + " " + text2art("S", "block") # Copy the ASCII art to the clipboard pyperclip.copy(text_art) # Inform the user that the ASCII art is copied to the clipboard print("ASCII art copied to clipboard. You can now paste it on a website like Pastebin.")