Imgflip Logo Icon

python range()

python range() | 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))) | image tagged in mr mcmahon reaction | made w/ Imgflip meme maker
181 views 2 upvotes Made by mahdihosseinnejad1 3 years ago in gaming
Mr. McMahon reaction memeCaption this Meme
Mr. McMahon reaction memeCaption 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)))