(python)为什么‘**otehr’不能储存‘color’和‘tow_package’两个实参
def made_car(brand,d_e,**other):
xinxi = {}
xinxi['品牌:'] = brand
xinxi['行驶环境:'] = d_e
for key ,value in other.items():
xinxi[key] = value
return xinxi
car = made_car('subaru','outback',color='blue',tow_package='True')
print(car)