#!/usr/bin/python # split.py # # Print a string downwards. # # AMJ # 2007-01-17 s = raw_input ("Enter a string: ") for c in s: print c