Skip to main content

Updated version of mass telephone number generator. | Short and sweet code.

 

https://blogofchamodh.blogspot.com/2020/10/generate-all-possible-phone-numbers.html

Here was the first version of the python script that generates crores of telephone numbers. But that script is complex and here is a simple version of the script.

Changes to the product() Function.

I wanted to generate all possible combinations of seven characters and put 7 lists as parameters of the product function but we can do it with only one list instead of seven lists. But you have to set the value 7 for the parameter "repeat" to tell the function you want a combination of seven characters 


product_a = product(['1','2','3','4','5','6','7','8','9','0'],repeat=7) 


And also you can change the product function as follows.

product_a = product('1234567890',repeat=7)



The above line of code does the same job but shortens our code too

You have another way to do this thing



import string
product_a = product(string.digits,repeat=7)

You can import String as shown above and replace our list parameter with string.digits
and it will give '0123456789' to our function to do the job




Comments

Trending Now

Find the Resultant vector of two Vectors With PYTHON!!

NEW ARTICLE:  How to Find the resultant of multiple vectors with Python! Using Python We can do many complex calculations. I learned how to calculate Resultant Vector using a formula with its size and direction in my Physics class. Then, I simply developed a CLI software to calculate the resultant of given two vectors Hope you like it :>) Follow me... Step :1 You need to install python on your computer. No matter what the operating system is you can find the ideal version of python from the official website of Python org And you will need a code editor like VS code and can download it with a simple Google search. (Hope you hate the first step Haha ) Step 2: we use the math module to calculate our resultant vector. The method I used as follows math.radians() : converts degrees to radians math.degrees() : converts radians to degrees math.sqrt()  : find the square root of a number math.atan() :find the tan inverse Step 3: the formula I used to calculate the size of the resultant is as

How to send and receive discord messages with your bot in 2023.

Hello everyone. Welcome back to the Blog of Chamodh today I will show you how to send and receive discord messages with your bot. Before getting started, I remind you that this is the second episode of the series How to make Discord bot in 2023 and if you haven't read the previous one, please read that first as I explain how to create your bot application and add it to a server there. READ:  https://blogofchamodh.blogspot.com/2023/02/how-to-make-your-own-discord-bot-2023.html We don't gonna use virtual environments, IDEs, or any other utility because we can use Replit for our coding purposes.  Let's Get Started. STEP1: Set up Replit It is really simple. Just go to  https://replit.com/~ and sign up if you have never used its service before and create a new Repl. I don't hope to guide you in this as this is an intermediate tutorial. Make sure to select Python as you create the new Repl because we are going to use Python for our back end. STEP 2: Get your token. To run ou