Skip to main content

For Loop

src/for_loop.py
from nada_dsl import *

def nada_main():
party_alice = Party(name="Alice")
start_int = SecretInteger(Input(name="start", party=party_alice))
list_length = 3

ascending_list = []
for i in range(list_length):
ascending_list.append(start_int + Integer(i))

# Return outputs using a for loop
outputs = []
for i in range(len(ascending_list)):
outputs.append(Output(ascending_list[i], "ascending_list_" + str(i), party_alice))

return outputs

Run and test the for_loop program

1. Open "Nada by Example"

Open in Gitpod

2. Run the program with inputs from the test file

nada run for_loop_test

3. Test the program with inputs from the test file against the expected_outputs from the test file

nada test for_loop_test
Feedback