#!/usr/bin/python

import random

random.seed()
i=0
s=""
while i < 128:
  # Waehle Zeichen zwischen ASCII 32 und 94 (nicht: 95, wg. Begrenzung)
  s = s+chr( random.randrange(32,95) )
  i+=1

f = open("zufall.dat","w")
f.write(s)
f.close()

