Mega Code Archive

 
Categories / Python / Tuple
 

In function for a string and a tuple

S, T = "lumberjack", ("and", "I'm", "okay") for x in S: print x, for x in T: print x,