Answered step by step
Verified Expert Solution
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started