0

I have data for a cell and from these data, I made a python code to extract some parameters. However, I want to repeat the same procedure for 100 cells (that have different initial data/ input). Is there a way to automate the process?

Rena
  • 1

1 Answers1

0

You can use looping for this.

primes = [2, 3, 5, 7]
for prime in primes:
    print(prime)