Posts by Rômulo Souza • 3 points
1 post
-
-3
votes4
answers573
viewsQ: how to create a list of multiples of numbers of 3, from another list of numbers?
meus_numeros = [1, 56, 342, 12, 781, 23, 43, 45, 123, 567] for c in meus_numeros: if c%3 == 0: print(c, end='') File "<ipython-input-12-2b3fd4ceddad>",…