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)
383 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)
383 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 Data Structures Cheat Sheet
PDF
No ratings yet
Python Data Structures Cheat Sheet
1 page
NumPy Notes
PDF
No ratings yet
NumPy Notes
13 pages
Python Hands On Answers
PDF
No ratings yet
Python Hands On Answers
15 pages
Pandas Assignment
PDF
100% (2)
Pandas Assignment
11 pages
Unit 1
PDF
100% (1)
Unit 1
69 pages
Artificial Intelligence Lab Manual: Python
PDF
No ratings yet
Artificial Intelligence Lab Manual: Python
15 pages
Numpy - Tutorial - Ipynb - Colaboratory
PDF
No ratings yet
Numpy - Tutorial - Ipynb - Colaboratory
9 pages
Unit 4
PDF
No ratings yet
Unit 4
60 pages
FDS Lab Manual
PDF
No ratings yet
FDS Lab Manual
48 pages
PYTHON Notes Unit1&Unit2
PDF
No ratings yet
PYTHON Notes Unit1&Unit2
38 pages
Python Important
PDF
No ratings yet
Python Important
35 pages
Python Practice Problems List
PDF
No ratings yet
Python Practice Problems List
4 pages
Unit 5
PDF
No ratings yet
Unit 5
27 pages
Unit II Visualizing Using Matplotlib
PDF
No ratings yet
Unit II Visualizing Using Matplotlib
24 pages
ML Lab Observation
PDF
100% (1)
ML Lab Observation
44 pages
Ad3311 - Artificial Intelligence Lab Manual
PDF
No ratings yet
Ad3311 - Artificial Intelligence Lab Manual
30 pages
Data Generalization
PDF
No ratings yet
Data Generalization
3 pages
ML Lab Manual (1-10) FINAL
PDF
No ratings yet
ML Lab Manual (1-10) FINAL
34 pages
Fds Unit - III
PDF
No ratings yet
Fds Unit - III
58 pages
Exploratory Data Analysis (Eda) With Pandas: (Cheatsheet)
PDF
No ratings yet
Exploratory Data Analysis (Eda) With Pandas: (Cheatsheet)
7 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
DL Lab Manual
PDF
100% (1)
DL Lab Manual
35 pages
Ad3301 Dev Full Notes
PDF
No ratings yet
Ad3301 Dev Full Notes
53 pages
Python Question Paper
PDF
No ratings yet
Python Question Paper
3 pages
358 33 Powerpoint Slides DSC Chapter 15
PDF
No ratings yet
358 33 Powerpoint Slides DSC Chapter 15
55 pages
Ge3151 Unit1 2marks
PDF
No ratings yet
Ge3151 Unit1 2marks
9 pages
Python Notes 3rd Mca
PDF
No ratings yet
Python Notes 3rd Mca
99 pages
CIA I Answer Key
PDF
No ratings yet
CIA I Answer Key
8 pages
Pandas Practice Questions
PDF
No ratings yet
Pandas Practice Questions
2 pages
Python Study Material
PDF
No ratings yet
Python Study Material
11 pages
Python Record
PDF
No ratings yet
Python Record
35 pages
New OOPS Assignment 1
PDF
No ratings yet
New OOPS Assignment 1
4 pages
Python Function Questions
PDF
No ratings yet
Python Function Questions
13 pages
MCQ Questions
PDF
No ratings yet
MCQ Questions
8 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
IV Unit Fds
PDF
No ratings yet
IV Unit Fds
16 pages
Assignment Dict For Python
PDF
No ratings yet
Assignment Dict For Python
6 pages
Week 7 Assignment 1
PDF
No ratings yet
Week 7 Assignment 1
6 pages
AIML Lab Manual
PDF
No ratings yet
AIML Lab Manual
43 pages
Unit-3-Second Chapter
PDF
No ratings yet
Unit-3-Second Chapter
9 pages
PYTHON Assignment
PDF
No ratings yet
PYTHON Assignment
11 pages
Dsf-Pyt-Lab Manual
PDF
No ratings yet
Dsf-Pyt-Lab Manual
50 pages
python-notes-BCC-302 (Unit - 05)
PDF
No ratings yet
python-notes-BCC-302 (Unit - 05)
25 pages
Lab-manual-Advanced Python Programming 4321602
PDF
No ratings yet
Lab-manual-Advanced Python Programming 4321602
24 pages
21 Machine Learning Using Scikit Learn Ipynb Colaboratory PDF
PDF
100% (1)
21 Machine Learning Using Scikit Learn Ipynb Colaboratory PDF
23 pages
Data Mining and Business Intelligence Lab Manual
PDF
No ratings yet
Data Mining and Business Intelligence Lab Manual
52 pages
A719552767 - 20992 - 7 - 2019 - Lecture10 Python OOP
PDF
No ratings yet
A719552767 - 20992 - 7 - 2019 - Lecture10 Python OOP
15 pages
03 Strings in Python
PDF
No ratings yet
03 Strings in Python
29 pages
Classification and Prediction
PDF
No ratings yet
Classification and Prediction
126 pages
Unit V Data Visualization
PDF
No ratings yet
Unit V Data Visualization
49 pages
Chapter 6 Database
PDF
No ratings yet
Chapter 6 Database
67 pages
Ge8151 Phython Prog Unit 4 New
PDF
No ratings yet
Ge8151 Phython Prog Unit 4 New
33 pages
4 Exploratory Data Analysis.
PDF
No ratings yet
4 Exploratory Data Analysis.
1 page
Week 5 Programming Assignment: (Https://swayam - Gov.in)
PDF
No ratings yet
Week 5 Programming Assignment: (Https://swayam - Gov.in)
12 pages
LP I ML Viva Questions
PDF
100% (1)
LP I ML Viva Questions
9 pages
Data Structures - Python 3.7.0
PDF
No ratings yet
Data Structures - Python 3.7.0
13 pages
Machine Learning Lab Dlihebca6sem
PDF
100% (1)
Machine Learning Lab Dlihebca6sem
25 pages
Python With Data Science
PDF
No ratings yet
Python With Data Science
102 pages
Week 2 Python For Data Science
PDF
No ratings yet
Week 2 Python For Data Science
27 pages
Ch05 - Python - Data Structures - 1721754633
PDF
No ratings yet
Ch05 - Python - Data Structures - 1721754633
37 pages
Zivame Planning Analyst Excel SQL Test
PDF
No ratings yet
Zivame Planning Analyst Excel SQL Test
50 pages
New - SQL Qustions
PDF
No ratings yet
New - SQL Qustions
3 pages
Untitled Spreadsheet
PDF
No ratings yet
Untitled Spreadsheet
3 pages
Car Details From Car Dekho
PDF
No ratings yet
Car Details From Car Dekho
212 pages
EDA Assignment
PDF
No ratings yet
EDA Assignment
16 pages
Life Expectancy Data
PDF
No ratings yet
Life Expectancy Data
288 pages
Car Data
PDF
No ratings yet
Car Data
16 pages
Linear Reg 1
PDF
No ratings yet
Linear Reg 1
7 pages
Statistics Assignemt
PDF
100% (1)
Statistics Assignemt
19 pages