Your search query "linkto%253A%2522erhansenlik%2522" didn't return any results. Please change some terms and refer to HelpOnSearching for more information.
(!) Consider performing a full-text search with your search terms.

Clear message

# -*- coding: cp1254 -*-
#random number generation
import random
f=open("ran.dat","wr")
n=int(raw_input("kaç tane rasgele sayı istersiniz\n"))
for i in range(n):
    x=random.random()
    y=str(x)
    z=str(i)
    print x
    f.write(y),f.write("\n")
    if i == n-1 :
        print x
        f.close()
import Numeric
import Gnuplot,Gnuplot.funcutils
g=Gnuplot.Gnuplot(debug=1)
g('set grid')
g.plot("'ran.dat' with linespoints")
g('set terminal png')
g('set output "random.png"')
g.plot("'ran.dat' with linespoints")

Unable to edit the page? See the FrontPage for instructions.