2011-07-17から1日間の記事一覧

pythonでASCII文字を手軽に生成する

import string print string.lowercase#'abcdefghijklmnopqrstuvwxyz' print string.uppercase#'ABCDEFGHIJKLMNOPQRSTUVWXYZ' print string.punctuation#'!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~' これは便利!