The speed of print command of python is slow. How to increase it?

前端 未结 0 1151
半阙折子戏
半阙折子戏 2020-12-16 12:48

I made this code

def selections(seq, n):
    
    if n == 0:
        yield []
    else:
        for i in range(len(seq)):
            # recursion
                     


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题