JavaScript required
We’re sorry, but Coda doesn’t work properly without JavaScript enabled.
Skip to content
Solution Array Challenge 1.4. Year Released
Pages
Solution
The Task
Python Starter Code
Code Clips
Solution Array Challenge 1.4. Year Released
/
Solution
Share
Explore
Solution
Solution
solution
print
(
'\n\n'
)
# display blank line (2)
# sets up array of year released
yearReleased
=
[
2022
,
2019
,
2016
,
2021
,
2020
,
2020
,
2018
,
2020
]
# prints out each element of array
for
i
in
range
(
0
,
len
(
yearReleased
)
,
1
)
:
print
(
yearReleased
[
i
]
)
original
print
(
'\n\n'
)
# display blank line (2)
# sets up array of year released
# prints out each element of array
Gallery
Share
Want to print your doc?
This is not the way.
Try clicking the ··· in the right corner or using a keyboard shortcut (
Ctrl
P
) instead.