Slicing
Use slicing to find the first four elements of the following string:
[3]: Letters="ABCDEFGHIJK"
Answers
Answered by
0
letters = "ABCDEFGHIJK"
print(letters[0:4])
Similar questions