Skip to content

Instantly share code, notes, and snippets.

@j105rob
Last active September 30, 2016 23:45
Show Gist options
  • Save j105rob/31c210a59eeeca168763d7cb883ecb61 to your computer and use it in GitHub Desktop.
Save j105rob/31c210a59eeeca168763d7cb883ecb61 to your computer and use it in GitHub Desktop.
def robLoop():
a = [48,48,48,48,48,48,48,48,
48,48,48,48,48,48,48,48]
exclude = [58,59,69,61,62,63,64,91,92,93,94,95,96]
max = 123
for i in range(0,len(a)):
while a[i] < max:
url = ''.join(str(chr(e)) for e in a)
print url
if a[i]+1 in exclude:
pass
else:
a[i]+=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment