Source Code:
(back to article)
my_string = "abcdefghijklmnopqrstuvwxyz" print(my_string[1::3]) # Output: "behkqtwz"
Result:
Report an issue