# Author: James Tam # Version: November, 2013 # Learning concepts: string splitting using the split() method. # Splits can occur using the default (space) or a non-default # character aString = "man who smiles" one, two, three = aString.split() # Default character is a space print (one) print (two) print (three) aString = "James,Tam" first, last = aString.split(',') nic = first + " \"The Bullet\" " + last print (nic)