Welcome to Coding 101 - It's the TWiT show that gives YOU the knowledge to live in the wonderful world of the programmer. This week we are introducing our newest module, Python with Code Warrior Dale Chase!
To see all the code used in today's episode, go to Our Github Repository for Module 2
Ivory Tower: External File IO
Using external data reqires knowledge of four functions: "open()", " read()", "write()" and "close()"
This function opens a file with the flags and mode of your choosing. For simplicity, we're only using the "r" "w" modes.
The "r" mode opens a file for "read only" use The "w" mode blanks the file prepares to write to the file * Note that this function DOES NOT READ THE FILE INTO A VARIABLE.
text_file = open("/Users/PadreSJ/Desktop/C101-16/write.txt", "r")
This opens a file called "write.txt" in READ-ONLY mode and sets the pointer in variable "text_file" text_file = open("/Users/PadreSJ/Desktop/C101-16/write.txt", "w")
This opens a file called "write.txt" in WRITE MODE, sets the pointer in variable "text_file" and blanks that file. This function reads the contents of the file into a string variable.
textFromFile = text_file.read()
This reads the file at pointer "text_file" into the string variable "textFromFile" This function writes a string into an external file.
text_file.write(MyString)
This writes the contents of the string variable "MyString" into the file indexed at "text_file" This function closes access to the file. USAGE: text_file.close() #This closes the file indexed at "text_file"
Hosts: Fr. Robert Ballecer, SJ and Shannon Morse
Subscribe and get Coding 101 automatically at https://twit.tv/shows/coding-101. Follow PadreSJ and Snubs on Twitter Bandwidth for Coding 101 is provided by CacheFly.
shutterstock.com offer code CODING514squarespace.com offer code CODING