Allright,i have this script, wich creates a .txt file, and is supposted to print the string from it. But it prints out nothing(just Process finished with exit code 0) , have no idea why and i can't find the anwser,(i'm pretty new to programming so i might not just get the idea of how some statements work) also i use python3.4
import io
import _pyio
import sys
import os
file1 = open("karolo.txt","w")
file3 = open("karolo.txt","r")
file1.write("abcd\n")
file34 = file3.read()
print(file34)