Skip to content

Instantly share code, notes, and snippets.

@adrienbrunet
Last active October 28, 2015 14:56
Show Gist options
  • Save adrienbrunet/518bbcd9d28c7d58d565 to your computer and use it in GitHub Desktop.
Save adrienbrunet/518bbcd9d28c7d58d565 to your computer and use it in GitHub Desktop.
Exo1
import random
tab = [random.randint(0, 100) for i in range(50)]
for i in range(5, 49, 5):
print(tab[i])
# directement sans boucle
print(tab[5::5])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment