subject

We are familiar with word count features of word processors such as found in MS-Word. These will report the number of words and characters in a document. We would like to write a function that we can eventually use to analyze a python program. That is write a function that will return the number of non-white space characters, the number of variable/function names used in the program, and the number of characters used in the variable/function names. The rules for Python names are:
A. A variable name must start with a letter or the underscore character.
B. A variable name cannot start with a number.
C. A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )
D. Variable names are case-sensitive (age, Age and AGE are three different variables)
Write a function python_word_count which when passed a string containing python code will return a tuple of total number of non-white space characters, number of characters found in the Python names, and the number of Python names found in the string. Write a main that will input a string and print the values returned by python_word_count together with the average length of the Python words. Ex:
def python_word_count(text):
Count of Python names: 3
Count of characters in Python names: 24
Average length of Python names: 8.0
Count of characters: 27
Ex 2:
if user_year % 4 == 0 and (user_year % _CENTURY != 0 or user_year % 400 == 0):
Count of Python names: 7
Count of characters in Python names: 42
Average length of Python names: 6.0
Count of characters: 61
Note: For simplicity, we will ignore the the fact that names within strings or in comments are not really Python names. Thus words inside quotes or in a comment will be counted as Python names. For consideration; what would be needed to exclude such words being counted.
Furthermore Python keywords will be considered to be Python names.
All in Python please =)

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 15:00
Jake really works well with numbers and is skilled with computers but doesn't work well with others. which of the jobs discussed in this unit might be best for jake? why?
Answers: 3
question
Computers and Technology, 24.06.2019 06:30
For which utilities, if any, does the landlord pay?
Answers: 2
question
Computers and Technology, 24.06.2019 11:30
Why is body language an important factor in a business meeting
Answers: 1
question
Computers and Technology, 24.06.2019 14:00
Text or graphics that print at the bottom of every page are called footings footers headers headings
Answers: 1
You know the right answer?
We are familiar with word count features of word processors such as found in MS-Word. These will rep...
Questions
question
History, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Health, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Biology, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
English, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Physics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
question
Mathematics, 12.09.2020 01:01
Questions on the website: 13722361