执行下面python代码后,输出的结果是?( )
1 def add(): 2 count = 1 3 4 def fun(): 5 nonlocal count 6 print(count, end="#") 7 count += 2 8 9 return fun 10 11 12 a = add() 13 a() 14 a()