Question: 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!