# strlist.py

str = ['H', 'e', 'l','l','o', ' ', 'W', 'o', 'r', 'l', 'd', '!']
n = len(str)
for i in str:
    print str[n-i],
