Python 函数循环调用

2025-01-24 16:44:08
推荐回答(1个)
回答1:

#脚本里面直接这样写就好了import randomdef R(): print (random.randint(1,1000))for i in range(1,10): R()