Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Lists

a_list = ['a', 'b', 'c', 'd', 'e']
print("a_list =",a_list)

a_list[0]
print("a_list[0] =",a_list[0])

a_list[-1]
print("a_list[-1] =",a_list[-1])

a_list[1:3]  
print("a_list[1:3] =",a_list[1:3])

a_list = a_list + ['f', 'g']
print("a_list =",a_list)

has_c = 'c' in a_list
print("has_c =",has_c)

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.