Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 876 Bytes

README.md

File metadata and controls

49 lines (41 loc) · 876 Bytes

rand-string

Generates a "random" string of a specified length.

Usage

Currently there are 5 types:

  • uppercase
  • lowercase
  • upperlower
  • alphanumerical
  • ascii

You can probably guess what each one would create

The function requires 2 parameters type and length; Type of course is the above.

import rand_string.rand_string as rand
rand.RandString(type, length)

Now lets look at some examples

uppercase:

print(rand.RandString("uppercase", 10))
# Output: TPDROEAVRY

lowercase:

print(rand.RandString("lowercase", 10))
# Output: mdvsewzkwf

upperlower:

print(rand.RandString("upperlower", 10))
# Output: YjHFGzysFx

alphanumerical:

print(rand.RandString("alphanumerical", 10))
# Output: Fy0Nbqno6B

ascii:

print(rand.RandString("ascii", 10))
# Output: jtj-NV<PSV