26. Don’t repeat yourself (DRY)

It’s easier to do ‘-‘*15 to produce 15 consecutive dashes, than to type them all out.

26.1. Don’t do this

1print('---------------')

26.2. Do this

1print('-'*15)