Facebook
From MKH, 7 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 405
  1. import pyperclip
  2. from art import *
  3.  
  4. # Create ASCII art for the letter "P" in "PES"
  5. text_art = text2art("P", "block")
  6. text_art += "n" + text2art("E", "block") + " " + text2art("S", "block")
  7.  
  8. # Copy the ASCII art to the clipboard
  9. pyperclip.copy(text_art)
  10.  
  11. # Inform the user that the ASCII art is copied to the clipboard
  12. print("ASCII art copied to clipboard. You can now paste it on a website like Pastebin.")
  13.  

Replies to Re: Untitled rss

Title Name Language When
Re: Re: Untitled MKH text 7 Months ago.