Reading and Writing Files with Python Intro

Reading and Writing Files with Python Intro

Assessment

Flashcard

Computers

9th - 12th Grade

Practice Problem

Easy

Created by

Wayground Content

Used 1+ times

FREE Resource

Student preview

quiz-placeholder

9 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is the correct way to open the file file_in.txt for reading? Options: open('file_in.txt', 'r'), open('file_in.txt','r+'), open('file_in.txt','w'), open('file_in.txt','a')

Back

open('file_in.txt', 'r')

2.

FLASHCARD QUESTION

Front

What is the best way to read an entire file into a single string?

Back

.read()

3.

FLASHCARD QUESTION

Front

What is the best way to read the first line of a file? Options: .read(), .readline(), .readlines(), .read(all)

Back

.readline()

4.

FLASHCARD QUESTION

Front

When reading text files, what are the hidden characters typically at the end of each line? Options:
, #, @, »

Back

\n

5.

FLASHCARD QUESTION

Front

Which is the best type of loop to write a file in? Options: While loop, for loop, repeat loop

Back

for loop

6.

FLASHCARD QUESTION

Front

What command can you use to separate parts of a line? Options: separate(), split(), divide(), cut()

Back

split()

7.

FLASHCARD QUESTION

Front

If I want to add to the end of a text file, I should: MyCipher = open("MyCipher.txt", "a")

Back

MyCipher = open("MyCipher.txt", "a")

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?