Gallery
Solution Array Challenge 1.3. Thumbs or Down
Share
Explore
Solution Array Challenge 1.3. Thumbs or Down

icon picker
Solution

Solution

solution
print('\n\n') # display blank line (2)

# sets up array of year released
thumbs = [True, True, True, True, False, False, True, False]


# prints out each element of array
for i in range(0, len(thumbs), 1) :
print(thumbs[i])
original
print('\n\n') # display blank line (2)

# sets up array of year released



# prints out each element of array
Share
 
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.