├── 1_text_files ├── exercise.py ├── solution.py └── test.txt ├── 2_read_string ├── exercise.py ├── solution_.py └── test_string.bin ├── 3_write_strings ├── exercise.py ├── solution.py └── test.bin ├── 4_read_objects ├── exercise.py ├── solution.py └── test_vectors.bin ├── A_translation ├── exercise.py └── solution.py ├── LICENSE └── README.md /1_text_files/exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/1_text_files/exercise.py -------------------------------------------------------------------------------- /1_text_files/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/1_text_files/solution.py -------------------------------------------------------------------------------- /1_text_files/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/1_text_files/test.txt -------------------------------------------------------------------------------- /2_read_string/exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/2_read_string/exercise.py -------------------------------------------------------------------------------- /2_read_string/solution_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/2_read_string/solution_.py -------------------------------------------------------------------------------- /2_read_string/test_string.bin: -------------------------------------------------------------------------------- 1 | You got it! -------------------------------------------------------------------------------- /3_write_strings/exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/3_write_strings/exercise.py -------------------------------------------------------------------------------- /3_write_strings/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/3_write_strings/solution.py -------------------------------------------------------------------------------- /3_write_strings/test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/3_write_strings/test.bin -------------------------------------------------------------------------------- /4_read_objects/exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/4_read_objects/exercise.py -------------------------------------------------------------------------------- /4_read_objects/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/4_read_objects/solution.py -------------------------------------------------------------------------------- /4_read_objects/test_vectors.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/4_read_objects/test_vectors.bin -------------------------------------------------------------------------------- /A_translation/exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/A_translation/exercise.py -------------------------------------------------------------------------------- /A_translation/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/A_translation/solution.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matyalatte/Python-exercises-for-modders/HEAD/README.md --------------------------------------------------------------------------------