8.3k views
2 votes
Programming question: • Question: Write a program that takes input as described below and prints output as described below. The program must work with the automated marker. This question is purely for you to obtain familiarity with the automated marker system which will be used more in later assignments. • Input: Input consists of many lines. At the end of each line there is hash symbol #. For example: blah 45 67# ddgfh fjhg gjkhgk# • Output: Output consists of the same lines as the input but without #. For example, for the input given above the output should be: blah 45 67 ddgfh fjhg gjkhgk • Language: You can use only Python. You need to submit you file with the code to the automarker. This file has to have .py extension.

User Ropo
by
7.2k points

1 Answer

1 vote

Final answer:

The Python program reads input lines ending with a hash symbol and outputs those lines without the hash symbol, using a loop that ends when there's no more input.

Step-by-step explanation:

The goal of this Python programming question is to write a program that receives several lines of input with each line ending in a hash symbol (#) and outputs the same lines without the hash symbol. To automate processing this task, we will write a program that continually reads lines of input until there is no more input, strips the hash symbol at the end of each line, and outputs the resulting string.

Python Program Example

Here's a simple Python program that accomplishes this task:

while True:
try:
line = input()
if line.endswith('#'):
print(line[:-1])
else:
break
except EOFError:
break

This program runs a loop that reads input lines and checks if they end with a hash symbol. If they do, it uses slicing to remove the last character before printing the line.

User Cecile
by
7.7k points