我想调用函数内部的函数来打印c。有两个函数。
def ash(): def jsh(): k = 5 j = k*5 return j def ush(): a = 5 b = 6 c = a + b return c print(ush())