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)
435 views
Python Data Structure Assignment
Uploaded by
Akshay Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
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)
435 views
Python Data Structure Assignment
Uploaded by
Akshay Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Python Data Structure Assignment For Later
Carousel Previous
Carousel Next
Download
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
Class 12 COMPUTER SCIENCE PPT Chapter 2 File-Handling-In-Python
PDF
No ratings yet
Class 12 COMPUTER SCIENCE PPT Chapter 2 File-Handling-In-Python
60 pages
Python Data Structures Cheat Sheet
PDF
No ratings yet
Python Data Structures Cheat Sheet
1 page
Typecasting in Python
PDF
No ratings yet
Typecasting in Python
6 pages
Pandas Assignment
PDF
100% (2)
Pandas Assignment
11 pages
Unit 4
PDF
No ratings yet
Unit 4
60 pages
Unit 1 - Data Handling Using Pandas and Data Visualisation: Important Multiple Choice Questions
PDF
No ratings yet
Unit 1 - Data Handling Using Pandas and Data Visualisation: Important Multiple Choice Questions
6 pages
Python Revision Tour-2 Worksheet
PDF
No ratings yet
Python Revision Tour-2 Worksheet
8 pages
CS-12-Strings in Python
PDF
No ratings yet
CS-12-Strings in Python
18 pages
Vision International School of Excellence Class: 11 CHAPTER-: List Manipulation
PDF
No ratings yet
Vision International School of Excellence Class: 11 CHAPTER-: List Manipulation
2 pages
Block 1-Data Handling Using Pandas DataFrame
PDF
No ratings yet
Block 1-Data Handling Using Pandas DataFrame
17 pages
Assignment Dict For Python
PDF
No ratings yet
Assignment Dict For Python
6 pages
Dav Computer Science SP
PDF
No ratings yet
Dav Computer Science SP
6 pages
Python Important
PDF
No ratings yet
Python Important
35 pages
Unit 1
PDF
100% (1)
Unit 1
69 pages
Python Study Material
PDF
No ratings yet
Python Study Material
11 pages
If - Else - Worksheet (Class 11)
PDF
No ratings yet
If - Else - Worksheet (Class 11)
4 pages
101 Onwards On Python Pandas and Pyplot
PDF
No ratings yet
101 Onwards On Python Pandas and Pyplot
33 pages
python-notes-BCC-302 (Unit - 05)
PDF
No ratings yet
python-notes-BCC-302 (Unit - 05)
25 pages
MCQ
PDF
No ratings yet
MCQ
22 pages
Database Management System
PDF
No ratings yet
Database Management System
35 pages
AI Practical File Part 1
PDF
100% (1)
AI Practical File Part 1
9 pages
Data File Handling in Python Class 12 - Mcqs
PDF
No ratings yet
Data File Handling in Python Class 12 - Mcqs
5 pages
Pandas Questions
PDF
No ratings yet
Pandas Questions
4 pages
Unit 1 Python
PDF
No ratings yet
Unit 1 Python
52 pages
Chapter - 6 Dictionary
PDF
100% (2)
Chapter - 6 Dictionary
25 pages
Icse Project - 1: Double Dimensional Arrays
PDF
No ratings yet
Icse Project - 1: Double Dimensional Arrays
18 pages
Python Notes ch3
PDF
100% (1)
Python Notes ch3
22 pages
CBSE Class 11 Informatics Practices Introduction To SQL
PDF
No ratings yet
CBSE Class 11 Informatics Practices Introduction To SQL
13 pages
Worksheet - Random Module
PDF
0% (1)
Worksheet - Random Module
3 pages
Worksheet BFH - Solution
PDF
No ratings yet
Worksheet BFH - Solution
7 pages
LMRS Ip 2020 21
PDF
No ratings yet
LMRS Ip 2020 21
21 pages
Informatics Practices Practical List22-2323
PDF
100% (1)
Informatics Practices Practical List22-2323
7 pages
MCQ (Revision Tour, Functions and File Handling) With Solution
PDF
No ratings yet
MCQ (Revision Tour, Functions and File Handling) With Solution
52 pages
stacks ppt
PDF
No ratings yet
stacks ppt
9 pages
Ernakulam region QP with MS
PDF
No ratings yet
Ernakulam region QP with MS
21 pages
Assignment Functions in Python
PDF
No ratings yet
Assignment Functions in Python
6 pages
Ad3301 Dev Full Notes
PDF
No ratings yet
Ad3301 Dev Full Notes
53 pages
Python Function Questions
PDF
No ratings yet
Python Function Questions
13 pages
Function Practice Questions
PDF
No ratings yet
Function Practice Questions
27 pages
F SQP CS 2023-24 Xi
PDF
No ratings yet
F SQP CS 2023-24 Xi
9 pages
Ge8151 Phython Prog Unit 4 New
PDF
No ratings yet
Ge8151 Phython Prog Unit 4 New
33 pages
FDS Lab Manual
PDF
No ratings yet
FDS Lab Manual
48 pages
Numpy - Tutorial - Ipynb - Colaboratory
PDF
No ratings yet
Numpy - Tutorial - Ipynb - Colaboratory
9 pages
Xi CS Worksheet List Tuples
PDF
No ratings yet
Xi CS Worksheet List Tuples
4 pages
2 +Variables+for+Numbers
PDF
100% (1)
2 +Variables+for+Numbers
1 page
03 Strings in Python
PDF
No ratings yet
03 Strings in Python
29 pages
Type C Solutions
PDF
No ratings yet
Type C Solutions
12 pages
Python Question and Answers - Built-In Functions - 1
PDF
0% (1)
Python Question and Answers - Built-In Functions - 1
15 pages
Data Types in Python
PDF
No ratings yet
Data Types in Python
5 pages
Assignment 2 Oops
PDF
No ratings yet
Assignment 2 Oops
10 pages
CLASS 12 cs
PDF
No ratings yet
CLASS 12 cs
43 pages
Computer Science Xii
PDF
0% (1)
Computer Science Xii
18 pages
Tuple in Python PDF
PDF
No ratings yet
Tuple in Python PDF
20 pages
Computer Science-Class-Xii-Sample Question Paper-2
PDF
No ratings yet
Computer Science-Class-Xii-Sample Question Paper-2
11 pages
Python Revision Material - CH.1,2.3.5.9
PDF
No ratings yet
Python Revision Material - CH.1,2.3.5.9
31 pages
Python Programs List
PDF
100% (1)
Python Programs List
5 pages
Data Visualization
PDF
No ratings yet
Data Visualization
9 pages
BPLCK205B-Module-III-important-questions
PDF
No ratings yet
BPLCK205B-Module-III-important-questions
8 pages
MCQ Questions
PDF
No ratings yet
MCQ Questions
8 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
Statistics Assignemt
PDF
100% (1)
Statistics Assignemt
19 pages
Linear Reg 1
PDF
No ratings yet
Linear Reg 1
7 pages