nazev = "./test.txt"
soubor=file(nazev,'w')
vstup=raw_input('Zadej text:')
soubor.write(vstup)
soubor.close()
