Computer Science, asked by rakhichiragpa9pli, 9 months ago

Write Python code to input the name of user. Print the first letter and last letter using index

Answers

Answered by nathanmathewv
0

Explanation:

name=input("enter name")

l=name[0]

n=name[-1]

print(l,n)

Please mark as brainliest :)

Similar questions