Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Update file _ path and delim to read the text from data / tempest . txt and split its content into scenes. ( Note: delim

Update file_path and delim to read the text from data/tempest.txt and split its content into scenes. (Note: delim should be set to a pattern that matches the scene headers (Section 4.4.1.2)). Print the scenes identified in the play (e.g., "SCENE 1", "SCENE 2").
With the preset code:
#---Your code starts here---
file_path =
delim =
#---Your code stops here---
tempest_text = open(file_path, "r").read()
scene_texts = re.split(delim, tempest_text)
print("Scenes:", scene_texts[1::2])

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Informix Database Administrators Survival Guide

Authors: Joe Lumbley

1st Edition

0131243144, 978-0131243149

More Books

Students also viewed these Databases questions