# Author: James Tam # Version: July 3, 2014 activity = input("What are you doing with dog now: ") print("We are taking the dog for a '", end="") # Steps through each letter in the activity entered by the user # Spells out the special activity by putting dashes between letters for ch in activity: print(ch + "-", end="") print("'")