I've got a string test_string like 'Hello, two is a number'" and I want to copy the characters between position 7 and 12. In the programming language I use:
test_string = 'Hello, two is a number'
new_string = string_copy(test_string, 7, 12)
the value of new_string would be ' two i'. My example might be a bit stupid, but does a function exist in Python equal to string_copy?