I need to insert a space after a certain amount of characters in a string. The text is a sentence with no spaces and it needs to be split with spaces after every n characters.
so it should be something like this.
thisisarandomsentence
and i want it to return as :
this isar ando msen tenc e
the function that I have is:
def encrypt(string, length):
is there anyway to do this on python?
encrypt('thisisarandomsentence',4)gives