Answers for "prints the first and last characters of the string python"

13

check strings last letter python

sample_str = 'Sample String'
# Get last character of string i.e. char at index position -1
last_char = sample_str[-1]
 
print('Last character : ', last_char)
# Output
Last charater : g
Posted by: Guest on May-27-2020

Code answers related to "prints the first and last characters of the string python"

Python Answers by Framework

Browse Popular Code Answers by Language