How to generate a random string suitable for a random regular expression pattern for minimal time interval in Python? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 2

How to generate a random string suitable for a random regular expression pattern for minimal time interval in Python?

For example pattern=r'[A-Z]{1,3}[0-9]{1,4}[a-z]+.[\w]+' So, how to create random string to this pattern for minimal time?

12th Jul 2020, 11:13 AM
Maksim Syromolotov
Maksim Syromolotov - avatar
1 Réponse
+ 1
Here's a start: i.e this part .....pattern=r'[A-Z]{1,3}....... import random import string print(*random.choices(string.ascii_uppercase, k=random.randint(1, 3)), sep='')
12th Jul 2020, 11:36 AM
rodwynnejones
rodwynnejones - avatar