Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python Problem : a)See the following Python program which contains 3 errors. Errors include statements that might be missing. import sys # Reads lines of

 Python Problem: a)See the following Python program which contains 3 errors. Errors include statements that might be missing. import sys # Reads lines of standard input, adds each line to a list, # prints the list. for line in sys.stdin myList.append( line ) print(myList) Correct the 3 errors in this program, and write the corrected version in the space below: b)In the following code, what type of Python object does 'input' represent? import sys import re input = sys.stdin.readlines() c)In the following code, what type of Python object does 'input' represent? import sys import re input = sys.stdin.read() d)In the following code, what type of Python object does 'ny' represent? import re str = "straight" ny = re.findall('[aeiou]', str) if ( ny ): print "yes" 

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

Database Concepts

Authors: David Kroenke, David J. Auer

3rd Edition

0131986252, 978-0131986251

More Books

Students also viewed these Databases questions

Question

Explain the methods in job design.

Answered: 1 week ago