There is no whitespace at the end of the string :rstrip()
There is no blank at the beginning of the string :lstrip()
There is no blank space on either side of the string :strip()
List with [] Express
bicycles[0].title()
bicycles[0]=' '
bicycles.append('hola') perhaps bicycles.insert(0,'hola')
del bicycles[0] perhaps bicycles.pop(), Pop up the last element of the list perhaps bicycles.pop(1) perhaps bicycles.pop(‘hola’)
Permutation cars.sort(), Temporary sort cars.sorted(), Reverse sorting cars.sort(reverse=True), Inversion order cars.reverse()
len(cars)