#Python 2.x: #print 'string' * (number of iterations) print '-' * 3 #Python 3.x: #print ('string' * (number of iterations)) print('-' * 3)