Python 快速生成隨機碼

Python import random import string def generate_code(bit_num): ''' :param bit_num: 生成驗證碼位數 :return: 返回生成的驗證碼 ''' all_str = string.printable.split('!')[0] code = ''.join([random.choice(all_str) for i i
相關文章
相關標籤/搜索