
Eddie B. answered 03/20/19
Purdue University student studying computer engineering
One way I like to work with longer strings is to break it up in to a list because I find it easier to manipulate. You can then make it back in to a simple string using the join() function so that
list1 = ["hello", "world"]
string = ' '.join(list1)
print(string)
would print "hello world". This method also works to print any range inside the list