String Python Tutorial

s = "this   is\na\ttest"                  
print s 
print s.split()                                
print " ".join(s.split())