165k views
2 votes
Type the program's output states = ['CA', 'NY', 'TX', 'FL', 'MA'] for (position, state) in enumerate(states): print(state, position)

User Perplexed
by
7.1k points

1 Answer

6 votes

Answer:

states = ['CA', 'NY', 'TX', 'FL', 'MA']

for (position, state) in enumerate(states):

print(state, position)

Output:

CA 0

NY 1

TX 2

FL 3

MA 4

User Adrian Bienias
by
7.5k points