[ create a new paste ] login | about

Link: http://codepad.org/lTmAKlzg    [ raw code | output | fork ]

Python, pasted on Sep 15:
1
2
3
4
5
6
7
8
9
# coding: utf-8

import random
 
print('This is password generator.')
letters=random.choice('abcčdefghijlkmnoprsštuvzžyqwABCČDEFGHIJKLMNOPRSŠTUVZŽYQW')
numbers=random.choice([1,2,3,4,5,6,7,8,9,0])
print letters
print numbers


Output:
1
2
3
This is password generator.
o
9


Create a new paste based on this one


Comments: