Skip to content

Instantly share code, notes, and snippets.

@dufferzafar
Created September 10, 2013 03:10
Show Gist options
  • Save dufferzafar/6504529 to your computer and use it in GitHub Desktop.
Save dufferzafar/6504529 to your computer and use it in GitHub Desktop.
Generate random-increasing timestamps
import time
import math
import random
for x in range(1, 10):
print(math.floor(time.time() + x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment