📘 Assignment: Python Data Structures
🔹 List Questions
1. Create a list of 5 numbers and print the largest number.
2. Write a program to add an element at the end of a list.
3. Remove a specific item from a list entered by the user.
4. Count how many times a number appears in a list.
🔹 Tuple Questions
5. Create a tuple with 5 elements and print the first and last element.
6. Convert a tuple into a list.
7. Check whether an element exists in a tuple or not.
🔹 Set Questions
8. Create a set and add three elements to it.
9. Find common elements between two sets.
10.Remove duplicate values from a list using a set.
11.Check if one set is subset of another.
🔹 Dictionary Questions
12.Create a dictionary with student name and marks, then print all keys.
13.Update value of a specific key in a dictionary.
14.Count frequency of characters in a string using dictionary.
15.Merge two dictionaries into one.