Try the following: import random import string def random_char(char_num): return ''.join(random.choice(string.ascii_letters) for _ in ...
確定! 回上一頁