Last active
September 24, 2020 00:25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import random | |
# A dummy script which keeps increasing the number of string added to list a | |
thing = "hi" | |
a = [] | |
for i in range(1000): | |
a.append(thing * random.randint(1000,2000)) | |
time.sleep(0.1) | |
print "index: {}".format(i) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment