Display (print) string multiple times (repeatedly) June 26, 2023 by Tarik Python 2.x: print '-' * 3 Python 3.x: print('-' * 3)