Write the output for the following in Python: 2 a) >>> k1=['a','e','i','o','u'] >>> k1[2:] b) >>> n=[15,78,25,39,0] >>> n[-3:-1]
Answers
Answered by
0
Answer:
a) ['i','o','u']
b) I think b is error
Similar questions