Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created September 27, 2010 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igaiga/598780 to your computer and use it in GitHub Desktop.
Save igaiga/598780 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
# 0-9a-zの7文字の文字列取得
# ただし乱数度合いは厳密ではない
c = "0123456789abcdefghijklmnopqrstuvwxyz"
str = ""
7.times{ str += c[rand(c.size)] }
p str
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment