Facebook
From MKH, 1 Year ago, written in Plain Text.
This paste is a reply to Re: Untitled from MKH - go back
Embed
Viewing differences between Re: Untitled and Re: Re: Untitled
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.")