我們是喜愛 Python 的人,這個 blog 是為了向大家介紹我們對於 Python 的喜好及學習心得。
#!/usr/bin/env python# -*- coding: utf-8 -*-from random import choicefrom string import digits, lettersPASSLEN = 8 # 密碼長度POOL = digits + letters # 密碼字元print ''.join([ choice(POOL) for i in range(PASSLEN) ])
張貼留言
0 意見:
張貼留言