List
arr = [1, 'Hello', True, False, 34.5,'*']
The append method adds an element at the end of the list
arr.append('new')
arr.copy
len(arr)
arr.count(1)
arr.clear
arr2 =['one','two']
arr.extend(arr2)
© 2025 Better Solutions Limited. All Rights Reserved. © 2025 Better Solutions Limited TopPrev