I wrote the following code :
lst=["Terribly Tricky"]
for word in lst:
for letter in word[-6:]:
print(letter)
And I was excpecting python to print "Tricky" but it returned the following :
T
r
i
c
k
y
How can I get it to print it like this :
Tricky
Thanks in advance.