Skip to content
Advertisement

How to iterate over a list once only in a nested loop in Python

I intend to send message to many numbers, but this is my code and issue (code is made shorter and required lines are here):

JavaScript

I know my way is incorrect, because this is the output but I’m not sure how to solve this. Googling this did not help me.

Output:

JavaScript

My desired output would be like:

JavaScript

I want to send the message to each number in each minute like the above output, how may I reach this?

Advertisement

Answer

Try using a generator for the hours and minutes and zip with the phone number:

JavaScript
Advertisement