learning-and-exercise
This repository is a collection of my Python programming exercises and notes,as I progress from a beginner to an advanced level.
このリポジトリには、Pythonの基礎から、私が学習した内容や演習問題を記録しています。
| No. | Exercise Title | Description | Link |
|---|---|---|---|
| 1 | Simple Login System | 簡易ログインシステム | view project |
| 2 | bmi calculator | if-elif-else 文を使って肥満度を判定する BMI 指数計算機 | view project |
| 3 | Countdown-timer | while文を使用して、指定された数値からカウントダウンを行うプログラムです。 | view project |
| 4 | Guessing Game(random) | random モジュールと while 文を使って、ランダムな数字を当てるゲームです。 | view project |
| 5 | Linear Search | for 文を使用して、リストの中から特定の数値を探すプログラムです。 | view project |
| 6 | Binary Search | 昇順に並んだリストを半分に分けながら検索するアルゴリズムです。 | view project |
| 7 | Book Collection | (追加、表示、検索、削除) 操作ができる蔵書管理システムです。 | view project |
| 8 | Book Collection (Function) | 関数を使用してモジュール化した蔵書管理システムです。 | view project |
| 9 | Student list | リストと辞書(List of Dictionaries)を使用した学生情報管理プログラム | view project |
| 10 | Library Management (Function) | 辞書による関数の切り替えを実装した蔵書管理システム | view project |