+10 XP
Type It: For Loops
Question 1 of 3
Complete the loop so it repeats for each item in spike_times:
python
spike_times = [10, 25, 42]
t in spike_times:
print(t)Type It: For Loops
Question 1 of 3
Complete the loop so it repeats for each item in spike_times:
spike_times = [10, 25, 42]
t in spike_times:
print(t)