Lab4A

# Eridson Trinidad
# March 12, 2013
# Session 9310
# Lab 4

#This is where the person enters their name, and its assigned to the variable: name
name = raw_input (‘Enter a name: ‘)
#the length of the name is applied to len_name
len_name = len(name)
#here is the start of the loop
while len_name != 0:
name_rev = name[len_name – 1 ]
print (name_rev)
len_name = len_name – 1
“””This is basically saying “use the ‘name’ to know how many characters
there are in the user’s name, then print the specified digit, take away
one, then start the process all over until you hit zero. when you do,
stop the program”””