pythonでの定義した関数内のlocal変数について | teratail
``` a = 5 def abc(): a += 7 return a def cde(): b = abc() return b print(cde