Question #209439 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/209439
Muzammil Basha posted a new comment:
Hi RaiMan,
I tried this..
import random
import string
class sdf():
def rand_string(self):
output = ''
length=5
chr_set = string.ascii_uppercase + string.digits
for n in range(length):
output = output + random.choice(chr_set)
return output
print(output)
new = sdf()
new.rand_string()
but sikuli responding nothing.. :(
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.
_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help : https://help.launchpad.net/ListHelp