print("Hi you pythonishta
" * 100)
#Python 2.x:
#print 'string' * (number of iterations)
print '-' * 3
#Python 3.x:
#print ('string' * (number of iterations))
print('-' * 3)
n = 5
string = "a"
output = string * n
print(output)
## Output:
# aaaaa