LoginSignup
0
1

More than 5 years have passed since last update.

めざせpythonライブラリマスター (15)brute

Last updated at Posted at 2016-06-04

【ライブラリ説明】

 数字(01234...)
 アルファベット(大文字、小文字両方とも)
 シンボル (!#$...)
  のすべての組み合わせの文字列を作成できます。

【プログラム】

brute.py
# -*- coding: utf-8 -*-

from brute import brute

# lengthには作成する文字列の長さを指定
# 指定しない場合は長さ3の文字列になる
for s in brute(length=1):
    print s

【参考サイト】

 pypi
 github

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1