Source Code:
(back to article)
str1 = "Hello, World!" print(str1[0:5]) # Output: Hello print(str1[7:]) # Output: World!
Result:
Report an issue