├── README.md ├── ex1 └── PythonHomework1.pdf ├── ex2 └── PythonHomework2.pdf ├── ex3 ├── Python10yrOldEx3.pdf ├── sootman.py └── sootsprite.py ├── ex4 ├── Python10yrOldEx4.pdf ├── gengrafix.py ├── geom.txt ├── showgrafix.py └── square.txt └── ex5 ├── Python10yrOldEx5.pdf ├── README.txt ├── fox.txt ├── ge-ch1.txt └── letter_freq.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/README.md -------------------------------------------------------------------------------- /ex1/PythonHomework1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex1/PythonHomework1.pdf -------------------------------------------------------------------------------- /ex2/PythonHomework2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex2/PythonHomework2.pdf -------------------------------------------------------------------------------- /ex3/Python10yrOldEx3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex3/Python10yrOldEx3.pdf -------------------------------------------------------------------------------- /ex3/sootman.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex3/sootsprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex3/sootsprite.py -------------------------------------------------------------------------------- /ex4/Python10yrOldEx4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex4/Python10yrOldEx4.pdf -------------------------------------------------------------------------------- /ex4/gengrafix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex4/gengrafix.py -------------------------------------------------------------------------------- /ex4/geom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex4/geom.txt -------------------------------------------------------------------------------- /ex4/showgrafix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex4/showgrafix.py -------------------------------------------------------------------------------- /ex4/square.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex4/square.txt -------------------------------------------------------------------------------- /ex5/Python10yrOldEx5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex5/Python10yrOldEx5.pdf -------------------------------------------------------------------------------- /ex5/README.txt: -------------------------------------------------------------------------------- 1 | Compute letter frequency in text and draw an ASCII bar graph. 2 | 3 | -------------------------------------------------------------------------------- /ex5/fox.txt: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /ex5/ge-ch1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex5/ge-ch1.txt -------------------------------------------------------------------------------- /ex5/letter_freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electronut/tp10/HEAD/ex5/letter_freq.py --------------------------------------------------------------------------------