a = ['NiuMei', 'NiuKele', 'NiuNeng']
b = [3, 4, 5, 8]
c = list(zip(a,b))
print(c)