Advertisement
steve-shambles-2109

219-Print partial credit card number

Mar 1st, 2020
1,280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1. """Code snippets vol-44-snip-219
  2. 219-Print partial credit card number
  3. stevepython.wordpress.com
  4.  
  5. possible uses to show part of credit card as a reminder
  6. or modify for phone number.
  7.  
  8. Download 200+ no nonsense python code snippets:
  9. https://wp.me/Pa5TU8-1yg
  10.  
  11. based on code from:
  12. https://dev.to/bagadia/random-python-tricks-for-random-moods-4g82
  13. """
  14.  
  15. # Credit card number.
  16. cc_nmbr = '1234 5678 9012 3456'
  17.  
  18. # Construct string.
  19. show_nmbr = 'XXXX XXXX XXXX '+ cc_nmbr[-4:]
  20.  
  21. print(show_nmbr)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement