Discuss / Python / 再再试试

再再试试

Topic source

def create_counter(start): L=[start] def counter(): L[0]+=1 return L[0] return counter


  • 1

Reply