René's URL Explorer Experiment


Title: Trigrams – Simple Text Manipulation — Programming in Python 7.0 documentation

direct link

Domain: uwpce-pythoncert.github.io

Links:

https://uwpce-pythoncert.github.io/ProgrammingInPython/index.html
1. Setting up your Environmenthttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/01-setting_up/index.html
2. Basic Pythonhttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/02-basic_python/index.html
3. Booleans and Recursionhttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/03-recursion_booleans/index.html
4. Sequences and Iterationhttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/04-sequences_iteration/index.html
5. Basic Text Handlinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/05-text_handling/index.html
6. Exception Handlinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/06-exceptions/index.html
7. Unit Testinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/07-unit_testing/index.html
8. Dictionaries and Setshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/08-dicts_sets/index.html
9. File Handlinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/09-files/index.html
File Reading and Writinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Files.html
File Exercisehttps://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/file_processing/file_lab.html
File Processinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/file_processing/file_processing.html
Mailroom With Fileshttps://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/mailroom/mailroom_with_files.html
Trigrams – Simple Text Manipulationhttps://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html
10. Modules and Packageshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/10-modules_packages/index.html
11. Advanced Argument Passinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/11-argument_passing/index.html
12. Comprehensionshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/12-comprehensions/index.html
13. Intro to Object Oriented Programinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/13-intro_oo/index.html
14. Properties and Magic Methodshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/14-magic_methods/index.html
15. Subclassing and Inheritancehttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/15-subclassing/index.html
16. Multiple Inheritancehttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/16-multiple_inheritance/index.html
17. Introduction to Functional Programminghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/17-functional_programming/index.html
18. Advanced Testinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/18-advanced_testing/index.html
19. Extra Topicshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/99-extras/index.html
Programming in Pythonhttps://uwpce-pythoncert.github.io/ProgrammingInPython/index.html
https://uwpce-pythoncert.github.io/ProgrammingInPython/index.html
9. File Handlinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/09-files/index.html
View page sourcehttps://uwpce-pythoncert.github.io/ProgrammingInPython/_sources/exercises/trigrams/trigrams.rst.txt
Previoushttps://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/mailroom/mailroom_with_files.html
Next https://uwpce-pythoncert.github.io/ProgrammingInPython/topics/10-modules_packages/index.html
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#trigrams-simple-text-manipulation
http://codekata.com/kata/kata14-tom-swift-under-the-milkwood/http://codekata.com/kata/kata14-tom-swift-under-the-milkwood/
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#trigrams
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#the-problem
Project Gutenberghttp://www.gutenberg.org/
herehttp://sailor.gutenberg.org/etext02/03tom10.txt
sherlock.txthttps://uwpce-pythoncert.github.io/ProgrammingInPython/_downloads/9f634eee56ccdd2ea8c081c80013fb12/sherlock.txt
sherlock_small.txthttps://uwpce-pythoncert.github.io/ProgrammingInPython/_downloads/348f5dbfabfa7d9ee9f70955645ff009/sherlock_small.txt
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#objectives
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#developing-your-solution
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#test-driven-development
test_trigrams.pyhttps://uwpce-pythoncert.github.io/ProgrammingInPython/_downloads/635b3b2d18f105d5824bbb9721a88320/test_trigrams.py
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#running-the-tests
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#id1
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#the-text
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#the-trigrams-structure
Mappinghttps://docs.python.org/3/glossary.html#term-mapping
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#building-the-trigrams-dict
Python dict Documentationhttps://docs.python.org/3/library/stdtypes.html?highlight=dictionary#mapping-types-dict
Write Explicit Testshttps://amir.rachum.com/blog/2017/01/14/explicit-tests/
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#using-the-trigrams-dict
https://docs.python.org/3/library/random.html#module-randomhttps://docs.python.org/3/library/random.html#module-random
provides a way to set the seedhttps://docs.python.org/3/library/random.html#random.seed
“pseudo random numbers”https://en.wikipedia.org/wiki/Pseudorandom_number_generator
random seedhttps://en.wikipedia.org/wiki/Random_seed
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#putting-it-together
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#processing-the-input-text
https://docs.python.org/3/library/string.htmlhttps://docs.python.org/3/library/string.html
https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/trigrams/trigrams.html#code-structure
Previoushttps://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/mailroom/mailroom_with_files.html
Next https://uwpce-pythoncert.github.io/ProgrammingInPython/topics/10-modules_packages/index.html
Sphinxhttps://www.sphinx-doc.org/
themehttps://github.com/readthedocs/sphinx_rtd_theme
Read the Docshttps://readthedocs.org

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.