Yes,
It's the right way to do so.
If you read the Owl Project Doc carefully , the Head Wizard did give you some tips like:
To print 10 blank lines (and thus effectively "clear the screen"),
you can use the newline character code ('\n') along with string
repetition, like this: print("\n" * 10)
Similarly, to display a number of dots in front of each owl (to show
how far it has flown), you can use * to do string repetition.
Therfore, in your case, it would be print("-" * 10) for real quick
Hope this helps!