About the Tutorial


Accessing Values in Lists



Download 2,85 Mb.
Pdf ko'rish
bet106/234
Sana28.05.2022
Hajmi2,85 Mb.
#614232
1   ...   102   103   104   105   106   107   108   109   ...   234
Bog'liq
python3 tutorial 060821094426

Accessing Values in Lists 
To access values in lists, use the square brackets for slicing along with the index or indices 
to obtain value available at that index. For example- 
#!/usr/bin/python3 
list1 = ['physics', 'chemistry', 1997, 2000] 
list2 = [1, 2, 3, 4, 5, 6, 7 ] 
print ("list1[0]: ", list1[0]) 
print ("list2[1:5]: ", list2[1:5])
When the above code is executed, it produces the following result − 
list1[0]: physics 
list2[1:5]: [2, 3, 4, 5] 
11.
 
Python 3 – Lists


Python 3 
144 
Updating Lists 
You can update single or multiple elements of lists by giving the slice on the left-hand side 
of the assignment operator, and you can add to elements in a list with the append() 
method. For example- 
#!/usr/bin/python3 
list = ['physics', 'chemistry', 1997, 2000] 
print ("Value available at index 2 : ", list[2]) 
list[2] = 2001 
print ("New value available at index 2 : ", list[2]) 
Note:
The append() method is discussed in the subsequent section. 
When the above code is executed, it produces the following result − 
Value available at index 2 : 
1997 
New value available at index 2 : 
2001 
Delete List Elements 
To remove a list element, you can use either the 
del
statement if you know exactly which 
element(s) you are deleting. You can use the remove() method if you do not know exactly 
which items to delete. For example- 
#!/usr/bin/python3 
list = ['physics', 'chemistry', 1997, 2000] 
print (list) 
del list[2] 
print ("After deleting value at index 2 : ", list) 
When the above code is executed, it produces the following result- 
['physics', 'chemistry', 1997, 2000] 
After deleting value at index 2 : ['physics', 'chemistry', 2000] 

Download 2,85 Mb.

Do'stlaringiz bilan baham:
1   ...   102   103   104   105   106   107   108   109   ...   234




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish