Skip to content
Advertisement

how to store arrays inside tuple in Python?

I have a simple question in python. How can I store arrays inside a tuple in Python. For example:

I want the output of my code to be like this:

JavaScript

So I want (0, 1) to be repeated for a specific number of times inside a tuple!

I have tried to use the following code to loop over a tuple:

JavaScript

However, the output is :

JavaScript

Maybe this is a simple question but I am still beginner in python!

Any help!

Advertisement

Answer

You could create a list, fill it up, then convert it to a tuple.

JavaScript

There are cleaner ways to do it, but I wanted to adapt your code in order to help you understand what is happening.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement