Untitled

 avatar
RonGut23
plain_text
a year ago
237 B
6
Indexable
# DESAFIO
celulares = ['Asus', 'Samsung', 'Sony', 'IPhone']
versoes = ['Plus', 'Premium Plus', 'Premium Deluxe', 'Plus Premium Ultra']
for cell_phone in celulares:
    for Version in versoes:
        print(f'{cell_phone} {Version}')
Editor is loading...
Leave a Comment