Skip to content

Instantly share code, notes, and snippets.

@bmontana
Created October 12, 2017 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmontana/72a7e95cb6ddf61ab275052c9eb5b71b to your computer and use it in GitHub Desktop.
Save bmontana/72a7e95cb6ddf61ab275052c9eb5b71b to your computer and use it in GitHub Desktop.
Calculates the average word length in a sentence entered by the user
# U05_Ex10_AvgWordLen.py
#
# Author: Bill Montana
# Course: Coding for OOP
# Section: A3
# Date: 11 Oct 2017
# IDE: PyCharm Community Edition
#
# Assignment Info
# Exercise: 10
# Source: Python Programming
# Chapter: 5
#
# Program Description
# Calculates the average word length in a sentence
# entered by the user
#
# Algorithm (pseudocode)
# Print intro
# Get sentence from user
# Split sentence into words
# Accumulate total length of words
# Divide by number of words to get average word length
# Print results
def main():
# Print intro
print('This program calculates the average word length in a sentence entered by the user.')
# Get sentence from user
inputStr = input('Please enter a sentence: ')
# Split sentence into words
words = inputStr.split(' ')
# Accumulate total length of words
ttlLen = 0
for word in words:
ttlLen += len(word)
# Divide by number of words to get average word length
avgWrdLen = ttlLen / len(words)
# Print results
print(' Number of words: {0}\nAverage word length: {1:.1f}'.format(len(words), avgWrdLen))
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment