import random, string def randomname(n): return ''.join(random.choices(string.ascii_letters + string.digits, k=n)). Python 3.6 以降であれば ...
確定! 回上一頁