Write a function that takes a string and prints out the letters in the string in reverse order.

Note: Similar to the previous question, an answer can assume that the string passed in is a letter, but a more accurate answer is one that checks if each index of a string is a letter as the below does.


```
def reverseLetters(source):
for index in range(len(source)-1, -1, -1):
if source[index].isalpha():
print source[index]
```

Computer Science & Information Technology

You might also like to view...

One generic Stack class could be the basis for creating many Stack classes, e.g., Stack,

Stack and Stack. These classes are known as __________. a. subclasses. b. generic subclasses. c. concrete classes. d. parameterized classes.

Computer Science & Information Technology

The ________ feature allows you to observe how each theme affects the formatting of a document

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which one of the following is an example of a command prompt?

A) C:/> B) C:\> C) C:> D) C>

Computer Science & Information Technology

Once an outgoing message is sent, a copy appears, by default, in the _________________________ Items folder.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology