Question: Use phyton for coding # Write a function that computes and returns statistics for the input text. # Statistics for the text should be structured
Use phyton for coding
# Write a function that computes and returns statistics for the input text. # Statistics for the text should be structured in the format of dictionary with # the following entries: # # a) Unique: number of unique words in the text # b) LeastFreq: the least frequent word in the text # c) MostFreq: the most frequent word in the text # d) LongestSenLen: the length of the longest sentence in the text # # Examples: # # Input: text = Programming is the process of creating a set of instructions # that tell a computer how to perform a task. Programming can be done using a # variety of computer programming languages, such as JavaScript, Python, and C++. # Different programming languages support different styles of programming. This # determines different programming paradigms. # # Output: {'Unique': 38, 'LongestSenLen': 18, 'LeastFreq': # 'paradigms', 'MostFreq': 'programming'} # # Input: text = Computer science is the study of algorithmic processes, # computational machines and computation itself. As a discipline, computer # science spans a range of topics from theoretical studies of algorithms, # computation and information to the practical issues of implementing # computational systems in hardware and software. # # Output: {'Unique': 31, 'LongestSenLen': 28, 'LeastFreq': 'software', 'MostFreq': 'of'} #
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
