Python Assign Code H/W

Start with the following Python code.  
alphabet = “abcdefghijklmnopqrstuvwxyz”   
test_dups = [“zzz”,”dog”,”bookkeeper”,”subdermatoglyphic”,”subdermatoglyphics”] 
test_miss = [“zzz”,”subdermatoglyphic”,”the quick brown fox jumps over the lazy dog”] 
# From Section 11.2 of: 
# Downey, A. (2015). Think Python: How to think like a computer scientist. Needham, Massachusetts: Green Tree Press. 
def histogram(s):

     d = dict()

     for c in s:

          if c not in d:

               d[c] = 1

          else:

               d[c] += 1

     return d 
Copy the code above into your program but write all the other code for this assignment yourself. Do not copy any code from another source. 
Part 1 
Write a function called has_duplicates that takes a string parameter and returns True if the string has any repeated characters. Otherwise, it should return False.  
Implement has_duplicates by creating a histogram using the histogram function above. Do not use any of the implementations of has_duplicates that are given in your textbook. Instead, your implementation should use the counts in the histogram to decide if there are any duplicates. 
Write a loop over the strings in the provided test_dups list. Print each string in the list and whether or not it has any duplicates based on the return value of has_duplicates for that string. For example, the output for “aaa” and “abc” would be the following. 
aaa has duplicates

abc has no duplicates 
Print a line like one of the above for each of the strings in test_dups. 
Part 2 
Write a function called missing_letters that takes a string parameter and returns a new string with all the letters of the alphabet that are not in the argument string. The letters in the returned string should be in alphabetical . 
Your implementation should use a histogram from the histogram function. It should also use the global variable alphabet. It should use this global variable directly, not through an argument or a local copy. It should loop over the letters in alphabet to determine which are missing from the input parameter. 
The function missing_letters should combine the list of missing letters into a string and return that string. 
Write a loop over the strings in list test_miss and call missing_letters with each string. Print a line for each string listing the missing letters. For example, for the string “aaa”, the output should be the following. 
aaa is missing letters bcdefghijklmnopqrstuvwxyz 
If the string has all the letters in alphabet, the output should say it uses all the letters. For example, the output for the string alphabet itself would be the following. 
abcdefghijklmnopqrstuvwxyz uses all the letters 
Print a line like one of the above for each of the strings in test_miss. 
Submit your Python program. It should include the following. 

The provided code for alphabet, test_dups, test_miss, and histogram. 

Your implementation of the has_duplicates function. 

A loop that outputs duplicate information for each string in test_dups. 

Your implementation of the missing_letters function. 

A loop that outputs missing letters for each string in test_miss. 

Also submit the output from running your program. 
Your submission will be assessed using the following Aspects.

Does the program include a function called has_duplicates that takes a string parameter and returns a boolean?

Does the has_duplicates function call the histogram function? 

Does the program include a loop over the strings in test_dups that calls has_duplicate on each string? 

Does the program correctly identify whether each string in test_dups has duplicates? 

Does the program include a function called missing_letters that takes a string parameter and returns a string? 

Does the missing_letters function call the histogram function?

Does the missing_letters function use the alphabet global variable directly?

Does the program include a loop over the strings in test_miss that calls missing_letters on each string?

Does the program correctly identify the missing letters for each string in test_miss, including each string that “uses all the letters”?

Place your order
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more

Order your paper today and save 30% with the discount code HAPPY

X
Open chat
1
You can contact our live agent via WhatsApp! Via + 1 323 412 5597

Feel free to ask questions, clarifications, or discounts available when placing an order.

Order your essay today and save 30% with the discount code HAPPY