Hi list,
In order to make tests I must create strings [20-32] & [32-64]
characters long with accentuated characters.
I use a very old piece of code (not even accurated, but sufficient
until now), however it don't give me lower-case nor accentuated :
for b in range(random.randint(48, 64)):
chiffre = random.randint(65, 88)
myStr += unichr(chiffre)
Does somebody has such code?
JY
--