Generating Random Strings Until a Target String is Matched in Python

In this tutorial, we’ll learn how to program “Generating Random Strings Until a Target String is Matched in Python.” The objective is to generate random strings until you reach the target string you want to match. This tutorial will guide you through the process step by step. So, let’s get started!

This topic is straightforward to understand. Just follow the instructions I provide, and you’ll complete it with ease. The program I’ll demonstrate will illustrate the proper way to generate random strings until they match the target string. So, let’s dive into the coding process!

Getting Started:

First you will have to download & install the Python IDLE's, here's the link for the Integrated Development And Learning Environment for Python https://www.python.org/downloads/.

Creating Main Function

This is the main function of the application. The following code will display a simple GUI in terminal console that will display program. To do this, simply copy and paste these blocks of code into the IDLE text editor.
  1. import string
  2. import random
  3. import time
  4.  
  5. while True:
  6.         print("\n========== Generating Random Strings Until a Target String is Matched ==========\n\n")
  7.    
  8.         possibleCharacters = string.ascii_lowercase + string.digits + string.ascii_uppercase + ' ., !?;:'
  9.  
  10.  
  11.         t = input("Enter a string: ")
  12.  
  13.  
  14.  
  15.         attemptThis = ''.join(random.choice(possibleCharacters)
  16.                                                                         for i in range(len(t)))
  17.         attemptNext = ''
  18.  
  19.         completed = False
  20.         iteration = 0
  21.  
  22.  
  23.         while completed == False:
  24.                 print(attemptThis)
  25.        
  26.                 attemptNext = ''
  27.                 completed = True
  28.  
  29.                 for i in range(len(t)):
  30.                         if attemptThis[i] != t[i]:
  31.                                 completed = False
  32.                                 attemptNext += random.choice(possibleCharacters)
  33.                         else:
  34.                                 attemptNext += t[i]
  35.                        
  36.        
  37.                 iteration += 1
  38.                 attemptThis = attemptNext
  39.                 time.sleep(0.1)
  40.  
  41.  
  42.         print("Target matched after " + str(iteration) + " iterations")
  43.  
  44.         opt = input("\nDo you want to try again?(yes/no): ")
  45.  
  46.         if opt.lower() == 'yes':
  47.                 ret=False
  48.         elif opt.lower() == 'no':
  49.                 ret=True
  50.                 print("Exiting program....")
  51.         else:
  52.                 print("Please enter yes/no:")
  53.                 break
  54.  
  55.         if ret == False:
  56.                 continue

This program randomly generates strings until it matches a target string provided by the user. It iteratively replaces incorrect characters with random ones from a predefined set and displays each attempt. The process continues until the generated string matches the target, keeping track of the number of iterations. The user can then decide whether to try again or exit the program.

Output:

There you have it we successfully created Generating Random Strings Until a Target String is Matched in Python. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

More Tutorials for Python Language

Python Tutorials

Add new comment