Create
Make a Meme
Make a GIF
Make a Chart
Make a Demotivational
python range()
share
181 views
•
2 upvotes
•
Made by
mahdihosseinnejad1
3 years ago
in
gaming
mr mcmahon reaction
Caption this Meme
Add Meme
Add Image
Post Comment
Show More Comments
Caption this Meme
Created with the Imgflip
Meme Generator
IMAGE DESCRIPTION:
print:[0, 1, 2, 3, 4]; list_ = list() for i in range(0, 5, 1): list_.append(i) print (list_); list_ = list() for i in range(5): list_.append(i) print (list_); print([i for i in range(5)]; print(list(range(5)))