steve-shambles-2109

Python code snippets vol 33: 165-Bullet-point Adder

Oct 13th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. '''
  2. Python code snippets vol 33:
  3. 165-Bullet-point Adder
  4. stevepython.wordpress.com
  5.  
  6. Adds bullets to a copied string and sends it back to clipboard
  7.  
  8. pip3 install pyperclip
  9.  
  10. Source:
  11. https://old.reddit.com/r/learnpython/comments/devvc2/
  12. please_review_my_code_working_on_reducing_the/
  13.  
  14. '''
  15. import pyperclip
  16.  
  17. clpbrd_source = pyperclip.paste().split('\n')
  18.  
  19. bulleted_result = "\n".join(list(map(lambda x: '* '+x, clpbrd_source)))
  20.  
  21. pyperclip.copy(bulleted_result)
Add Comment
Please, Sign In to add comment