这里的for循环主要目的是遍历列表的值,但是第一个键值对的值不是列表,有什么方法可以跳过第一个键,从第二键开始吗?
agent = {'number': '1001',
'agent_name': ['one', 'two', 'three'],
'agent_city': ['x', 'y', 'z'],
}
for na, ci in agent.items():
print(na.title() + ", nice to meet you")
for cii in ci:
print('\t' + cii)