Pengulangan kata dalam python

#repeatition of the object n times
n=int(input('enter the number to be repeated='))
print('hello '*n)

#output:
enter the number to be repeated=
hello .. .....
Gr@Y_orphan_ViLL@in##