mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.4 KiB
92 lines
2.4 KiB
2 years ago
|
## String processing
|
||
2 years ago
|
|
||
|
### Instructions
|
||
|
|
||
|
Tokenization is the process of breaking down a string into smaller pieces, called tokens. In natural language processing, tokenization typically refers to the process of breaking down a sentence into words or breaking down a paragraph into sentences.
|
||
|
|
||
|
Create a file `string_processing.py` which will have a function `tokenize(sentence)` that given a sentence will do the following:
|
||
|
|
||
2 years ago
|
- remove all punctuation marks and special characters
|
||
|
- separate all words like so: `"it's not 3" => ['it', 's', 'not', '3']`
|
||
2 years ago
|
- put all the words in lowercase
|
||
|
- return a list of all the words.
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
Here is a possible `test.py` to test your functions:
|
||
|
|
||
|
```python
|
||
|
import string_processing
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
my_sentence = "It's not possible, you can't ask for a raise"
|
||
|
print(string_processing.tokenize(my_sentence))
|
||
|
```
|
||
|
|
||
|
```bash
|
||
|
$ python test.py
|
||
|
['it', 's', 'not', 'possible', 'you', 'can', 't', 'ask', 'for', 'a', 'raise']
|
||
|
```
|
||
|
|
||
|
### Hints
|
||
|
|
||
2 years ago
|
The `re` library is a module for working with regular expressions. It provides a set of functions for working with regular expressions, including:
|
||
2 years ago
|
|
||
|
- `re.sub()` : Replaces all occurrences of a regular expression pattern in a string with a replacement string.
|
||
|
|
||
|
```python
|
||
|
text = "This is a test sentence. It has multiple punctuation marks!"
|
||
|
|
||
|
# Replace all exclamation marks with question marks
|
||
|
new_text = re.sub("!", "?", text)
|
||
|
|
||
|
print(new_text)
|
||
|
```
|
||
|
|
||
|
and the output:
|
||
|
|
||
|
```console
|
||
|
This is a test sentence. It has multiple punctuation marks?
|
||
|
```
|
||
|
|
||
|
The `.lower()` method is used to convert the sentence to lowercase before tokenizing it.
|
||
|
|
||
|
```python
|
||
|
text = "This Is A TeST Sentence."
|
||
|
|
||
|
lower_text = text.lower()
|
||
|
|
||
|
print(lower_text)
|
||
|
```
|
||
|
|
||
|
and the output:
|
||
|
|
||
|
```console
|
||
|
this is a test sentence.
|
||
|
```
|
||
|
|
||
|
The `.split()` method is used to split the sentence into a list of words.
|
||
|
|
||
2 years ago
|
```python
|
||
2 years ago
|
text = "This is a test sentence."
|
||
|
|
||
|
words = text.split()
|
||
|
|
||
|
print(words)
|
||
2 years ago
|
```
|
||
2 years ago
|
|
||
|
and the output:
|
||
|
|
||
|
```console
|
||
|
['This', 'is', 'a', 'test', 'sentence.']
|
||
2 years ago
|
```
|
||
2 years ago
|
|
||
|
### References
|
||
|
|
||
|
- [string methods](https://www.w3schools.com/python/python_ref_string.asp)
|
||
|
- [replace](https://www.w3schools.com/python/ref_string_replace.asp)
|
||
|
- [split](https://www.w3schools.com/python/ref_string_split.asp)
|
||
2 years ago
|
- [String punctuations](https://docs.python.org/3/library/string.html#string.punctuation)
|
||
2 years ago
|
- [Tokenization in text analysis](https://en.wikipedia.org/wiki/Lexical_analysis#Tokenization)
|
||
|
- [Word segmentation](https://en.wikipedia.org/wiki/Text_segmentation#Word_segmentation)
|