Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. from __future__ import division
  2. import numpy as np
  3. from math import *
  4. import matplotlib.pyplot as plt
  5.  
  6. f = open('file.txt','w')
  7.  
  8. for i in xrange(64**5):
  9. f.write(str(i) + "\n")
  10.  
  11. f.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement