Is this cheating?

phrase = "A bird in the hand..."

# Add your for loop
phrase = phrase.replace("A","X")
phrase = phrase.replace("a","X")
for char in phrase:
  print char,
  



#Don't delete this print statement!
print