Learn Python in One Day and Learn It Well: Python for Beginners with Hands-on Project. The only book you need to start coding in Python immediately pdfdrive com


len( ) Find the number of items in a list [Example] myList = [‘a’, ‘b’, ‘c’, ‘d’] print (len(myList)) => 4 pop( )



Download 4,83 Kb.
Pdf ko'rish
bet34/37
Sana09.05.2023
Hajmi4,83 Kb.
#936471
1   ...   29   30   31   32   33   34   35   36   37
Bog'liq
Learn Python in One Day and Learn It Well Python for Beginners with Hands-on Project. The only book you need to start coding in Python immediately ( PDFDrive )

len( )
Find the number of items in a list
[Example]
myList = [‘a’, ‘b’, ‘c’, ‘d’]
print (len(myList)) => 4
pop( )
Get the value of an item and remove it from the list Requires index of
item as the parameter
[Example]
myList = [‘a’, ‘b’, ‘c’, ‘d’, ‘e’]
#remove the third item member = myList.pop(2) print (member)
=> c
print (myList)
=> [‘a’, ‘b’, ‘d’, ‘e’]
#remove the last item member = myList.pop( ) print (member)
=> e
print (myList)
=> [‘a’, ‘b’, ‘d’]
remove( )


Remove an item from a list. Requires the value of the item as the
parameter.
[Example]
myList = [‘a’, ‘b’, ‘c’, ‘d’, ‘e’]
#remove the item ‘c’
myList.remove(‘c’) print (myList)
=> [‘a’, ‘b’, ‘d’, ‘e’]
reverse()
Reverse the items in a list
[Example]
myList = [1, 2, 3, 4]
myList.reverse()
print (myList)
=> [4, 3, 2, 1]
sort()
Sort a list alphabetically or numerically
[Example]
myList = [3, 0, -1, 4, 6]
myList.sort()
print(myList)
=> [-1, 0, 3, 4, 6]
sorted()


Return a new sorted list without sorting the original list.
Requires a list as the parameter
[Example]
myList = [3, 0, -1, 4, 6]
myList2 = sorted(myList)
#Original list is not sorted print (myList)
=> [3, 0, -1, 4, 6]
#New list is sorted print (myList2)
=> [-1, 0, 3, 4, 6]
Addition Operator: +
Concatenate List
[Example]
myList = [‘a’, ‘b’, ‘c’, ‘d’]
print (myList + [‘e’, ‘f’]) => [‘a’, ‘b’, ‘c’, ‘d’,
‘e’, ‘f’]
print (myList)
=> [‘a’, ‘b’, ‘c’, ‘d’]
Multiplication Operator: *
Duplicate a list and concatenate it to the end of the list
[Example]
myList = [‘a’, ‘b’, ‘c’, ‘d’]
print (myList*3)


=> ['a', 'b', 'c', 'd', 'a', 'b', 'c', 'd', 'a', 'b', 'c', 'd']
print (myList)
=> [‘a’, ‘b’, ‘c’, ‘d’]

Download 4,83 Kb.

Do'stlaringiz bilan baham:
1   ...   29   30   31   32   33   34   35   36   37




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