Source Code:
(back to article)
original_string = "Hello, world!" substring = original_string[7:12] print(substring)
Result:
Report an issue