Maurice Tutor

(5)

$15/per page/Negotiable

About Maurice Tutor

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Algebra,Applied Sciences See all
Algebra,Applied Sciences,Biology,Calculus,Chemistry,Economics,English,Essay writing,Geography,Geology,Health & Medical,Physics,Science Hide all
Teaching Since: May 2017
Last Sign in: 303 Weeks Ago, 4 Days Ago
Questions Answered: 66690
Tutorials Posted: 66688

Education

  • MCS,PHD
    Argosy University/ Phoniex University/
    Nov-2005 - Oct-2011

Experience

  • Professor
    Phoniex University
    Oct-2001 - Nov-2016

Category > Communications Posted 25 Aug 2017 My Price 11.00

` Python's interactive mode

Question 1 of 1
8.0 Points

In Python's interactive mode, I created the following code to 1) build a histogram dictionary for a string and 2) print the characters in the string and their counts in descending order.

Use this string:

>>> text = 'Now is the time for all good men and women to come to the aid of their country.'

and you should get this result:


17
o 10
t 7
e 7
n 4
m 4
i 4
r 3
h 3
d 3
a 3
w 2
l 2
f 2
c 2
y 1
u 1
s 1
g 1
N 1
. 1

The code uses lists, dictionaries, and tuples. Fill in the blanks so that the code works correctly.

  1. >>> __________histogram(somestring):
  2. ... char_dict__________dict()
  3. ... ____________char in _____________:
  4. ... __________= char_dict.get( _________________, 0) + 1
  5. ... ___________________char_dict
  6. ...
  7. >>> x = histogram(text)
  8. >>> def sort_by_value(somedict):
  9. ... char_list = []
  10. ... __________________key in __________________:
  11. ... char_list.append(( _______________, key))
  12. ... ___________________.sort(reverse= _______________)
  13. ... for value, key in _____________:
  14. ... print( _________________, ___________________)
  15. ...
  16. >>> sort_by_value( ______________)

Answers

(5)
Status NEW Posted 25 Aug 2017 04:08 PM My Price 11.00

Hel-----------lo -----------Sir-----------/Ma-----------dam-----------Tha-----------nk -----------You----------- fo-----------r u-----------sin-----------g o-----------ur -----------web-----------sit-----------e a-----------nd -----------and----------- ac-----------qui-----------sit-----------ion----------- of----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n.P-----------lea-----------se -----------pin-----------g m-----------e o-----------n c-----------hat----------- I -----------am -----------onl-----------ine----------- or----------- in-----------box----------- me----------- a -----------mes-----------sag-----------e I----------- wi-----------ll

Not Rated(0)