✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Question #26: What gets printed?
```python
names1 = ['Alpha', 'Bravo', 'Charlie', 'Delta']
names2 = names1
names3 = names1[:]
names2[0] = 'Echo'
names3[1] = 'Foxtrot'
my_sum = 0
for ls in (names1, names2, names3):
if ls[0] == 'Echo': my_sum += 10 if ls[1] == 'Foxtrot': my_sum += 1print(my_sum)
```