Nested Loop
Aguiart
python
02/21/2025 7:27 PM
264 B
11
Indexable
celulares = ['Asus', 'Samsung', 'Sony', 'IPhone']
versoes = ['Plus', 'Premium Plus', 'Premium Deluxe', 'Plus Premium Ultra']
for x in celulares:
for y in versoes:
print(f'{x} {y}')Editor is loading...
Leave a Comment