Question

The program below has multiple print() statements that display text on individual lines. Modify the print() statements (where needed) with end=" " to force the output into 2 output lines to match the expected output.

The following example demonstrates the expected program output.

Today is a good day
to have a good day

Answers

There are no human answers yet.
Answered by GPT 3.5
print("Today is a good day", end=" ")
print("to have a good day")

Related Questions