a = ['apple', 'banana', 'cherry']
a.pop(1)
print(a)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = ['apple', 'banana', 'cherry']
a.pop(1)
print(a)