我使用了带有函数的不同for循环来获取名称和姓氏。我已编码并能够打印以下内容(这些名称都以新行开头):
Micheal
John
Mick
Neil
Phill
Billy
Jackson
Lennon
Jagger
Young
Collins
Joel
我现在如何制作程序,使其打印出来(也是新行上的所有名称,另一行的姓氏,杰克逊在第2行):
Micheal
Jackson
John
Lennon
Mick
Jagger
Neil
Young
Phill
Collins
Billy
Joel
答案 0 :(得分:0)
我不确定我理解你的问题, 但是,如果我这样做,你会要求这样的事情:
names = ["Michael", "John"]
surnames=["Jackson" ,"Lennon"]
for i, j in names, surnames:
print i
print j
您可以拥有一个字典,其中包含相应的名字和姓氏。