From 675b689c387c97420074df0f10ef273b42297588 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 30 Jan 2023 20:22:42 +0000 Subject: [PATCH] docs(string_tokenizer_count): highlight filenames --- subjects/devops/string_tokenizer_count/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/devops/string_tokenizer_count/README.md b/subjects/devops/string_tokenizer_count/README.md index 8a86cdf5..df00a487 100644 --- a/subjects/devops/string_tokenizer_count/README.md +++ b/subjects/devops/string_tokenizer_count/README.md @@ -2,7 +2,7 @@ ### Instructions -Create a file string_tokenizer_count.py that contains a function tokenizer_counter which takes in a string as a parameter and returns a dictionary of words and their count in the string. +Create a file `string_tokenizer_count.py` that contains a function `tokenizer_counter` which takes in a string as a parameter and returns a dictionary of words and their count in the string. - The function should remove any punctuation from the string and convert it to lowercase before counting the words. @@ -10,7 +10,7 @@ Create a file string_tokenizer_count.py that contains a function tokenizer_count ### Usage -Here is an example of how to use the function in a test.py script: +Here is an example of how to use the function in a `test.py` script: ```python string = "This is a test sentence, with various words and 123 numbers!"