Possible Duplicate:
how can I iterate through two lists in parallel in Python?
i have 3 lists like this:
name = ['sam', 'john', 'napoleon', 'tanaka', 'ming']
country = ['USA', 'England', 'France', 'Japan', 'China']
age = [23, 41, 19, 16, 55]
and i want an output like:
sam; USA; 23
john; England; 41
napoleon; France; 19
tanaka; Japan; 16
ming; China; 55
any help would be great. thanks in advance