• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/6

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

6 Cards in this Set

  • Front
  • Back

open

-You must open a file before you can read its contents

close

-When you are done with a file, you should close it

read

-Will read the entire contents of a file as a string


-This is often used in an assignment statement so that a variable can reference the contents of the file

readline

Will read a single line from the file, up to and including the first instance of the newline character

readlines

Will read the entire contents of a file into a list where each line of the file is a string and is an element in the list

write

Will add characters to the end of a file that has been opened for writing