Skip to content

Instantly share code, notes, and snippets.

@k5trismegistus
Last active January 27, 2016 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k5trismegistus/39e27f83a4670e145d8d to your computer and use it in GitHub Desktop.
Save k5trismegistus/39e27f83a4670e145d8d to your computer and use it in GitHub Desktop.
import random
def create_datas():
datas = []
for i in range(50):
a = random.random()
datas.append((a, 3 * a + 2 + (random.random() - 0.5)))
return datas
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment