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