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.- import string
- import random
- import time
- while True:
- print("\n========== Generating Random Strings Until a Target String is Matched ==========\n\n")
- possibleCharacters = string.ascii_lowercase + string.digits + string.ascii_uppercase + ' ., !?;:'
- t = input("Enter a string: ")
- attemptThis = ''.join(random.choice(possibleCharacters)
- for i in range(len(t)))
- attemptNext = ''
- completed = False
- iteration = 0
- while completed == False:
- print(attemptThis)
- attemptNext = ''
- completed = True
- for i in range(len(t)):
- if attemptThis[i] != t[i]:
- completed = False
- attemptNext += random.choice(possibleCharacters)
- else:
- attemptNext += t[i]
- iteration += 1
- attemptThis = attemptNext
- time.sleep(0.1)
- print("Target matched after " + str(iteration) + " iterations")
- opt = input("\nDo you want to try again?(yes/no): ")
- if opt.lower() == 'yes':
- ret=False
- elif opt.lower() == 'no':
- ret=True
- print("Exiting program....")
- else:
- print("Please enter yes/no:")
- break
- if ret == False:
- 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
Add new comment
- 111 views