Question: I Need help I keep getting this error when I run the code Enter input string: Traceback (most recent call last): File main.py, line 2,

I Need help I keep getting this error when I run the code

Enter input string: Traceback (most recent call last):

File "main.py", line 2, in

name = input('Enter input string: ')

EOFError: EOF when reading a line

Here is my code:

while True:

name = input('Enter input string: ')

print(" ".rstrip(" "))

if(name == 'q'):

exit(0)

else:

name =name.replace( '','')

if ',' in name:

name = name.split(',')

print('First word: '.strip(),name[0])

print('Second word: '.strip(),name[1])

print(" ".rstrip(" "))

print()

else:

',' not in name

print('Error: No comma in string.')

while False:

print()

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 Programming Questions!