执行以下程序,输出的结果是?
def make_cloth(color): return "制作了一件" + color + "的民族服饰" print(make_cloth("红色"))
make_cloth
制作了一件红色的民族服饰
红色
制作了一件color的民族服饰