Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
381 views
Python Data Structure Assignment
Uploaded by
Akshay Kumar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Python Data Structure Assignment For Later
Download
Save
Save Python Data Structure Assignment For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
381 views
Python Data Structure Assignment
Uploaded by
Akshay Kumar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Python Data Structure Assignment For Later
Carousel Previous
Carousel Next
Save
Save Python Data Structure Assignment For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 9
Search
Fullscreen
11317, 152 PM 5..Python Data Structure Assignment Day 5 done.ipynb - Colaboratory Python Data Structures Types of Data Structures: eo posible yee aloned 1D snmutable => can't be changes ‘D mutable => can be changed Lists Create an empty list with the name a, print the value of a and type(a). = printtay 0 f print the type of @ Type) Create a list , languages = [R,Python, ‘SAS, ‘Scala’, 42] Pint the numberof elements inthe ist pranteay [oR “Python, “S88, “Seata', 2] Using for loop iterate and print all the elements in thelist, ntps:ifeolab rosearch google. comldrva/t OKBOSTIm7UoOxhgeTOyITETRBSVoolprintModo=tue 19‘191723, 1:62 PM 5..Python Data Structure Assignment Day 5 done ipynb - Colaboratory Select the second tem, Pythar and store it in new variable named Yemg! senpet emp-insert(2,"Pythan") Print the value of temp and type(temp) print(tenp) Sypet tere) [erython ‘Append the element Java’ inthe list senp.sppene("3a¥8") print(eenp) [Python's “3ava") Remove the element 42 frm the lit and print the ist ssrenove( 42) Create a list, colors = [Red’, ‘Blue’, White] colors = {ed Blue’, ite") Append the element Black to colors colors. sppend(“blaee") print(colors) [red', “olue', “white’, “slack*] [Append the color ‘Orange! to second position (index=1) and print the Uist colors. insere(a,"orange") Print the ist print(colors) [rRed', ‘orange’, “slue', “wnite", ‘alack') Create another ist, colors2 = (Grey, ‘Sky Blue] colors2=("Grey' "Sty Blue") [Add the elements af colors? to colors using extend function inthe list ntps:ifeolab rosearch google. comldrva/t #OKBOSTIm7UodxhgeTOyITETRDSVoolprintModo=tue‘191723, 1:62 PM 5..Python Data Structure Assignment Day 5 done ipynb - Colaboratory celors.entend(colors2) Printlen of colors ands elements x = den(coters) print x print(colors) [rted', ‘orange’, ‘Slue', “white, “alack', “rey', ‘sky olue') Sort the list and print it celors.sort() print(colors) [blace’, “blue, “Grey's orange’, ‘Rea, “Shy Blu0", “unite Create a string, sent = ‘Coronavirus Caused Lockdowns Around The World.” Use split function to convert the string int alist of words and save it invariable words and print he same 5 = sent splie() printce) coronavirus", “Causes, “Lockdouns!, ‘Argun, "The’y “hone. *] Convert each word in the list to lower case and store itn vaiable words lower. Print words lower words_lower = sent. lower) print(woeds_tower) ‘Check whether eounty'is inthe list praret found") Prine (not found") Remove the element ‘the’ from the list and print thelist. evrenove("The") pranteey coronavirus", “Caused, “Loekdouns', “Around, “Wort Select the fst 4 words fom the Ist words Jower using sleing and store them In a new variable x4 ntps:ifeolab rosearch google.comldrva/t #OKBOSTim7UodxhgeTOyITETRBSvoolprintMode=tue11317, 152 PM 5..Python Data Structure Assignment Day 5 done.ipynb - Colaboratory Ht = words_lower{@:-10] Convert the ist of elements to single string using jin function and print it sointey Sets Create stud_grades = [AB stad.grades © [A148 Print the len of stud grades x= ten(stus graces) prints) Create a new variable, stud_grades_set = set(stuc.grades) stud grades_set = set(stud_grades) Print stud. grades. set print(stud_grades_set) CAC, OOD print the type of stue_grades and stud_grades_set and print their corresponding elements, Try to understane the difference between them, [Add a new element’6'to stud_grades_set stu grades set.24a0"6") ‘Add element 'F'to stud. grades_set. and print stad_ grades. set. add") ntps:ifeolab rosearch google. comldrva/t #OKBOSTim7UodxhgeTOyITETRBSVoolprintMode=tue 49‘191723, 1:62 PM 5..Python Data Structure Assignment Day 5 done ipynb - Colaboratory "Dd you notice? set doesn't ade an element iit’ already present init untke ist, Remove'F from stud grades_set stud_grades_set.renove("E*) Print the elements and the length of stud. grades. set print(stud_grades_set lent stu Create colors = [red'/blue‘orangel], and fruits ‘orange'/grapes'/apples] colors = [Cred blue’, “arange"] fruits = (orange, “grapes, apples") Print color and fut print{ colors, fruits) [rred', “olue', ‘orange’) [Vorange’, “erapes', ‘apples") Create colors. set, and fruts_set. (using set()) and pin them set( (rea, “atu, orange’) set(Corange’ "grapes" apples) print(colors_set,(ruits_set) Find the union of both the sets 2 = colons. set-unton(sreits_set) Print(2) Find the intersection of bath the sets 1 = colors_set-tntersection( fruite set) printte) range") Find the elements which are Fut but not colors (using set.ference()) a> frusts_set.titterence( colors se8) print¢e) ntps:ifeolab rosearch google. comldrva/t OKBOSTIm7UoOxhgeTOyITETRBSVoolprintModo=tue 59‘191723, 1:62 PM 5..Python Data Structure Assignment Day 5 done ipynb - Colaboratory grapes", “apples'} TUPLES. Create temp =[17, 'Virat’, 50.0] temp = (17, ‘Virat', $0.0] Iterate through temp and print all the items in temp print(senp) 27, “vieat’, 50.9) replace fist element with 1 in temp Settempl = tuple(temp) senpt = tuplatene) IRerate through tempt and print al the items in tempt prant¢ceno2) at, 50.0) replace fist element with 17 in temp? emp = ist(terpt) enp{0) = 17 fenpt = tuplatene) print(cenoa) (27, “vies, 50.0) ‘Oopst! You got an error. Hey Dorit wory!Its because Once a tuple i create you cannot change its values unlike Hist. Create city Bangalore’, 28.9949521, 72) clty = ("Banestore, 28.989521, 72) Print frst element of ty print¢etty) (angatore’, 28.9949521, 72) ntps:ifeolab rosearch google. comldrva/t #OKBOSTim7UodxhgeTOyITETRDSVoolprintModo=tue11317, 152 PM 5..Python Data Structure Assignment Day 5 done.ipynb - Colaboratory Create city2 = (Chennal, 30.01, 74) citye = Cebeanaé!, 38.01, 74) Create cities which consist of ety and city? Print etes print(essses) (Bangaiore’, 28.9949521, 72, ‘Chennai’, 38.01, 74) Print typeof fst element in cities synet0) Print the type of ces cypetesties) Hey that implies you made a nested tuples! DICTIONARY Create a dictionary d = ('actor"amir’‘animal 4 = Cactor*s"anie”,“aninan"s"eat®,Yearen:2, "Lists (23,32,22]}, Print the value of do) print(a.vatues(0)) (Oopst! again an error. again a fun fact, Ditionary return the value for key if key is in the detionay, here Store the value of dfactor to anew variable actor. actor = d.get ("acter") ntps:ifeolab rosearch google. comldrva/t #OKBOSTim7UodxhgeTOyITETRDSVoolprintModo=tue ‘cat’ yearth’:2"list"[23,32,12]) 1 throws KeyError and we don't have key 119‘191723, 1:62 PM Print the typeof actor sypetaetor) Store the value of ast] is List = a.get(rtise”) (2, 32, a2) Print the typeof List eypettisty create di eke ( singer” 2 ke Merge dt into d apdatetat) ctor’: ante’, ist": (23, 32, 1 5..Python Data Structure Assignment Day 5 done ipynb - Colaboratory in new variable List. ‘singe’: KrSna’, ‘album Still here, genre hip-hop) fatbun's “SEIT here’, “genre” + “hipstop") pinta print(e) Print althe keys in print(a.kays()) ict keys(U'actor", Print all he values ind print¢s.values()) de yates ({'anse Iherate over d and pent ea animal's cat’, ‘earth's 2, ‘Issn: (23, 32, 12], ‘singe’: Skefna", ‘albon's °SesI0 here’, ‘animal’, ‘earth’, “List", “singer', ‘alban’, “gsnre'1) "eat 2, (28, 32, 12], “egma", “SEH here", “hép=hop" D> ich key, value pair as this ( tor —> ami) ey, "9 aleey1 ) ee. (3, 32, 12) singer > tna ntps:ifeolab rosearch google. comldrva/t #OKBOSTim7UodxhgeTOyITETRDSVoolprintModo=tue a9‘191723, 1:62 PM 5..Python Data Structure Assignment Day 5 done ipynb - Colaboratory count the number of accurences of charachters in string named "sent using dictionary and print the same Gi = (1 sent.count(x) for in set(sent)) print(at) ntps:ifeolab rosearch google. comldrva/t #OKBOSTim7UodxhgeTOyITETRBSVoolprintMode=tue 919
You might also like
Python Assignment
PDF
No ratings yet
Python Assignment
2 pages
Python Data Structures Cheat Sheet
PDF
No ratings yet
Python Data Structures Cheat Sheet
1 page
Python Hands On Answers
PDF
No ratings yet
Python Hands On Answers
15 pages
Python Assignment
PDF
No ratings yet
Python Assignment
7 pages
An Introduction To Interactive Programming in Python
PDF
No ratings yet
An Introduction To Interactive Programming in Python
3 pages
Pandas Assignment
PDF
100% (2)
Pandas Assignment
11 pages
Artificial Intelligence Lab Manual: Python
PDF
No ratings yet
Artificial Intelligence Lab Manual: Python
15 pages
MCQ Questions
PDF
No ratings yet
MCQ Questions
8 pages
Python Programming - Introduction All
PDF
No ratings yet
Python Programming - Introduction All
44 pages
Data Analytics With Python-1
PDF
No ratings yet
Data Analytics With Python-1
12 pages
FDS Lab Manual
PDF
No ratings yet
FDS Lab Manual
48 pages
Python Study Material
PDF
No ratings yet
Python Study Material
11 pages
Engineering Digest DSA Sheet
PDF
No ratings yet
Engineering Digest DSA Sheet
8 pages
Python Practice Problems List
PDF
No ratings yet
Python Practice Problems List
4 pages
SL Important Questions
PDF
No ratings yet
SL Important Questions
3 pages
PYTHON Notes Unit1&Unit2
PDF
No ratings yet
PYTHON Notes Unit1&Unit2
38 pages
Python Objective Questions For Beginners - CppBuzz
PDF
No ratings yet
Python Objective Questions For Beginners - CppBuzz
18 pages
Unit - 1 1.what Are The Features of Python. Explain The PVM. Ans: Following Are Some Important Features of Python
PDF
No ratings yet
Unit - 1 1.what Are The Features of Python. Explain The PVM. Ans: Following Are Some Important Features of Python
15 pages
Python Lists
PDF
No ratings yet
Python Lists
4 pages
Practical 5: Introduction To Weka For Classfication
PDF
100% (1)
Practical 5: Introduction To Weka For Classfication
4 pages
OOPs in Python
PDF
100% (1)
OOPs in Python
8 pages
Numpy - Tutorial - Ipynb - Colaboratory
PDF
No ratings yet
Numpy - Tutorial - Ipynb - Colaboratory
9 pages
Pro TCS Technical Paid Paper
PDF
100% (1)
Pro TCS Technical Paid Paper
66 pages
Unit 1
PDF
100% (1)
Unit 1
69 pages
Python Revision Tour
PDF
No ratings yet
Python Revision Tour
14 pages
Chapter 6 Database
PDF
No ratings yet
Chapter 6 Database
67 pages
Numpy Complete Material
PDF
No ratings yet
Numpy Complete Material
19 pages
Python Lab
PDF
No ratings yet
Python Lab
27 pages
Ch.7 INtroduction to Python Question Answers 2023_24
PDF
100% (1)
Ch.7 INtroduction to Python Question Answers 2023_24
8 pages
Unit 4
PDF
No ratings yet
Unit 4
60 pages
Lecture Notes: Introduction To Data Science and Big Data
PDF
No ratings yet
Lecture Notes: Introduction To Data Science and Big Data
5 pages
Image Processing and Pattern Recoginition Lab Manual
PDF
No ratings yet
Image Processing and Pattern Recoginition Lab Manual
38 pages
Noc20-Cs28 Week 01 Assignment 01
PDF
No ratings yet
Noc20-Cs28 Week 01 Assignment 01
6 pages
Python Strings Programs
PDF
100% (1)
Python Strings Programs
4 pages
Python Important
PDF
No ratings yet
Python Important
35 pages
File Handling MQP With Solutions by Nitin Paliwal
PDF
No ratings yet
File Handling MQP With Solutions by Nitin Paliwal
12 pages
Pract File - Part3 - Final Computer Practical Helpful Notes Download It
PDF
No ratings yet
Pract File - Part3 - Final Computer Practical Helpful Notes Download It
36 pages
Assignment 1 Data Type
PDF
No ratings yet
Assignment 1 Data Type
3 pages
Pandas Practice Questions
PDF
No ratings yet
Pandas Practice Questions
2 pages
8 Best Python Cheat Sheets For Beginners and Intermediate Learners
PDF
100% (1)
8 Best Python Cheat Sheets For Beginners and Intermediate Learners
17 pages
Data Structures and Algorithms (DSA) in Python - Self Paced
PDF
No ratings yet
Data Structures and Algorithms (DSA) in Python - Self Paced
4 pages
Deep Learning CNN
PDF
100% (1)
Deep Learning CNN
22 pages
Play Tennis Example: Outlook Temperature Humidity Windy
PDF
No ratings yet
Play Tennis Example: Outlook Temperature Humidity Windy
29 pages
LP I ML Viva Questions
PDF
100% (1)
LP I ML Viva Questions
9 pages
Python File 1-9
PDF
No ratings yet
Python File 1-9
11 pages
Write A Python Program To Solve Quadratic Equation
PDF
No ratings yet
Write A Python Program To Solve Quadratic Equation
6 pages
Python Lab Manual-R22
PDF
No ratings yet
Python Lab Manual-R22
61 pages
Programming For Data Science With Python: Nanodegree Program Syllabus
PDF
No ratings yet
Programming For Data Science With Python: Nanodegree Program Syllabus
13 pages
Python Main Program Set 2
PDF
No ratings yet
Python Main Program Set 2
18 pages
File Handling Assignment
PDF
No ratings yet
File Handling Assignment
1 page
Python MCQs
PDF
No ratings yet
Python MCQs
199 pages
Python Function Questions
PDF
No ratings yet
Python Function Questions
13 pages
Week 2 Python For Data Science
PDF
No ratings yet
Week 2 Python For Data Science
27 pages
Noc20-Cs28 Week 07 Assignment 02
PDF
No ratings yet
Noc20-Cs28 Week 07 Assignment 02
6 pages
Python Lab Manual 2018 by K.Kesavapandian
PDF
No ratings yet
Python Lab Manual 2018 by K.Kesavapandian
30 pages
AVL Search Tree L-Deletions
PDF
100% (1)
AVL Search Tree L-Deletions
12 pages
ML Lab Observation
PDF
100% (1)
ML Lab Observation
44 pages
File Handling Easy Notes
PDF
No ratings yet
File Handling Easy Notes
9 pages
Ch05 - Python - Data Structures - 1721754633
PDF
No ratings yet
Ch05 - Python - Data Structures - 1721754633
37 pages
Finxter WorldsMostDensePythonCheatSheet
PDF
No ratings yet
Finxter WorldsMostDensePythonCheatSheet
1 page
New - SQL Qustions
PDF
No ratings yet
New - SQL Qustions
3 pages
Zivame Planning Analyst Excel SQL Test
PDF
No ratings yet
Zivame Planning Analyst Excel SQL Test
50 pages
Untitled Spreadsheet
PDF
No ratings yet
Untitled Spreadsheet
3 pages
Car Data
PDF
No ratings yet
Car Data
16 pages
Car Details From Car Dekho
PDF
No ratings yet
Car Details From Car Dekho
212 pages
Life Expectancy Data
PDF
No ratings yet
Life Expectancy Data
288 pages
Linear Reg 1
PDF
No ratings yet
Linear Reg 1
7 pages
EDA Assignment
PDF
No ratings yet
EDA Assignment
16 pages
Statistics Assignemt
PDF
100% (1)
Statistics Assignemt
19 pages