I am trying to create a function that takes an integer (n) and returns a string with n-amount of hashes.
Ex:
if n is 5, the string would be : #####
if n is 2 the string would be : ##
I am trying to create a function that takes an integer (n) and returns a string with n-amount of hashes.
Ex:
if n is 5, the string would be : #####
if n is 2 the string would be : ##