Advertisement
ancestor_tunji

#last_five_characters

Feb 6th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. #9
  2. def last_five_characters(a = ""):
  3.     return(a[-5:])
  4.  
  5. last_five_characters("dynasty")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement