×
Samples Blogs Make Payment About Us Reviews 4.9/5 Order Now

Implement Sets and Dictionaries in Python Assignment Solution

June 26, 2024
Dr. Sophia Nguyen
Dr. Sophia
🇸🇬 Singapore
Python
Dr. Sophia Nguyen holds a Doctorate in Computer Engineering from an esteemed university in Singapore and has completed over 900 assignments in Python file handling. Dr. Nguyen's expertise spans across areas such as file I/O optimizations, concurrency in file operations, and developing scalable file management systems. She excels in handling large datasets, implementing efficient error recovery strategies, and integrating file operations into web applications.
Key Topics
  • Instructions
    • Objective
  • Requirements and Specifications
Tip of the day
Use Python libraries effectively by importing only what you need. For example, if you're working with data, using libraries like pandas and numpy can save time and simplify complex tasks like data manipulation and analysis.
News
In 2024, the Biden-Harris Administration has expanded high-dosage tutoring and extended learning programs to boost academic achievement, helping programming students and others recover from pandemic-related setbacks. These initiatives are funded by federal resources aimed at improving math and literacy skills​

Instructions

Objective

Write a python assignment program to implement sets and dictionaries.

Requirements and Specifications

Program-to-implement-sets-and-dictionaries-in-python

Source Code

BEAD SUM LIST if __name__ == '__main__': filename = input('Enter input file: ') f = open(filename, 'r') l = [] for line in f.readlines(): l.append(int(line)) f.close() k = int(input('Enter bead sum k: ')) t = [] for i in l: if (k - i >= i) and (k - i in l): t.append((i, k-i)) for pair in t: print(pair[0], pair[1]) BEAD SUM SETS if __name__ == '__main__': filename = input('Enter input file: ') f = open(filename, 'r') l = set() for line in f.readlines(): l.add(int(line)) f.close() k = int(input('Enter bead sum k: ')) t = set() for i in l: if (k - i >= i) and (k - i in l): t.add((i, k-i)) for pair in t: print(pair[0], pair[1]) FREQUENCY COUNTS if __name__ == '__main__': filename = input('Enter input file: ') f = open(filename, 'r') word_dict = {} letter_dict = {} for word in f.read().splitlines(): if word not in word_dict: word_dict[word] = 0 word_dict[word] += 1 for c in word: if c not in letter_dict: letter_dict[c] = 0 letter_dict[c] += 1 for word in word_dict: print(word, word_dict[word]) print() for c in letter_dict: print(c, letter_dict[c])

Similar Samples

Explore our comprehensive programming samples at ProgrammingHomeworkHelp.com. From Java and Python projects to complex algorithms and web development, our examples showcase effective solutions across various domains. Each sample is crafted to illustrate problem-solving approaches, aiding students and professionals alike in mastering programming concepts and achieving academic success.