def city_country(city,country): return "\"" + city + "," + country + "\"" print("ShenZhen","China")
为什么打印这样的结果,ShenZhen China
而不是"ShenZhen,China"
这样才是调用city_country函数,并打印city_country返回值
print(city_country("ShenZhen","China"))
哎,智障了一回,这都没发现