introduction of list
123456789101112131415
cars = ['bmw','audi','ferrari']
print(cars) # this variable list
print()
# Accessing elements in a list
print(cars[1].upper()) # this string list
print()
# by using Combination of conce
print(cars[1].title())
Python
INFO