sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #13344
Re: [Question #209439]: Is there any inbuild func, that can be used to call Alphabets randomly..
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.