Advertisement
Mofeoluwa

Untitled

Feb 22nd, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. def first_letter_of_last_string(list): #define a function named first_letter_of_last_string with argument list
  2.     sage = list[-1][0] #getting the last string of the list to be inputted and also the first letter of that string
  3.     print(sage)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement