Write a program to open “Compuer.txt” file and add the following text
“The modern computer begins with two separate technologies automated calculation and programmability”
1
Expert's answer
2011-08-02T14:10:24-0400
fcomp = open ("Computer.txt", "a") fcomp.write ("The modern computer begins with two separate technologies automated calculation and programmability") fcomp.close()
Comments
Leave a comment