Unit 4 Task 2 - Solution

Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.

Solution - Task 2: Screen divider

← Back to task


One possible program:

def divider():
    print("-" * 30)

divider()
print("Today's practice")
divider()