Act word count percentages.

This commit is contained in:
Dan Helfman 2021-09-11 19:51:56 -07:00
parent 1b486d4d69
commit b88e696287
2 changed files with 4 additions and 4 deletions

View File

@ -19,9 +19,9 @@ chapter 3: 115 words
chapter 4: 96 words
chapter 5: 136 words (drafted)
act 1: 187 words
act 2: 212 words
act 3: 137 words
act 1: 187 words (~34%)
act 2: 212 words (~39%)
act 3: 137 words (~25%)
drafted: 239 words
dev edited: 83 words
total: 539 words

View File

@ -86,7 +86,7 @@ def main():
if act_number is None:
continue
print('act {}: {} words'.format(act_number, act_word_count))
print('act {}: {} words (~{}%)'.format(act_number, act_word_count, act_word_count * 100 // total_word_count))
for status, status_word_count in word_count_by_status.items():
print('{}: {} words'.format(status, status_word_count))