注意,zip()将可迭代对象封装成元素对应的元组形式,使用dict转换成字典格式。
name = input().split()
language = input().split()
print(dict(zip(name,language)))