├── .gitattributes ├── .gitignore ├── README.md ├── ex1 ├── ex1.py └── guess_number.py ├── ex2 └── FizzBuzz.py ├── ex3 └── guess_number_AI.py ├── ex4 └── clock.py ├── text.txt └── words.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/README.md -------------------------------------------------------------------------------- /ex1/ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/ex1/ex1.py -------------------------------------------------------------------------------- /ex1/guess_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/ex1/guess_number.py -------------------------------------------------------------------------------- /ex2/FizzBuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/ex2/FizzBuzz.py -------------------------------------------------------------------------------- /ex3/guess_number_AI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/ex3/guess_number_AI.py -------------------------------------------------------------------------------- /ex4/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/ex4/clock.py -------------------------------------------------------------------------------- /text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/text.txt -------------------------------------------------------------------------------- /words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greyli/PythonExercises/HEAD/words.txt --------------------------------------------------------------------------------