https://github.com/nragland37/python-projects
Collection of Python Projects, Jupyter Notebooks, & Learning Materials
https://github.com/nragland37/python-projects
jupyter jupyter-notebooks jupyterlab learning-python object-oriented-programming python python-programming python-projects python3
Last synced: 5 months ago
JSON representation
Collection of Python Projects, Jupyter Notebooks, & Learning Materials
- Host: GitHub
- URL: https://github.com/nragland37/python-projects
- Owner: nragland37
- License: mit
- Created: 2024-03-14T21:40:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-06T23:24:56.000Z (9 months ago)
- Last Synced: 2024-11-16T02:15:00.462Z (7 months ago)
- Topics: jupyter, jupyter-notebooks, jupyterlab, learning-python, object-oriented-programming, python, python-programming, python-projects, python3
- Language: Python
- Homepage:
- Size: 983 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://app.codacy.com/gh/nragland37/python-projects/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[](https://github.com/nragland37/python-projects/blob/main/LICENSE)#
Hello, World! :snake:
'''
This is an introductory collection of Python projects, covering basics to intermediate topics, including `Jupyter notebooks` with countless runnable programs and descriptions.
## Anaconda & Jupyter
Anaconda is a package and environment manager that includes Jupyter Notebook and Jupyter Lab.
### Installation
- [Anaconda (Recommended)](https://www.anaconda.com/products/distribution)
- [Jupyter Only](https://jupyter.org/install)### Running Jupyter
1. **VS Code**: [Jupyter Notebooks in VS Code](https://code.visualstudio.com/docs/datascience/jupyter-notebooks)
2. **Anaconda Navigator**: GUI for managing environments and launching apps (included with Anaconda).
3. **Command Line**:
```bash
jupyter notebook
```
```bash
jupyter lab
```'''
### [Projects](/src)
* [Documents](src/docs/)| # | Project |
|:---:|:---|
| 1 | [Grapevine Farming Calculator](./src/01-grapevineFarmingCalculator) |
| 2 | [Population Growth Calculator](./src/02-populationGrowthCalculator) |
| 3 | [Math Quiz](./src/03-mathQuiz) |
| 4 | [World Series Winners Tracker](./src/04-worldSeriesWinnersTracker) |
| 5 | [US Population Trends Analyzer](./src/05-USPopulationTrendsAnalyzer) |
| 6 | [LoShu Magic Square Validator](./src/06-loShuMagicSquareValidator) |
| 7 | [Camel Case To Pig Latin Converter](./src/07-camelCaseToPigLatinConverter) |
| 8 | [World Series Winners Tracker (Continued)](./src/08-updated_worldSeriesWinnersTracker) |
| 9 | [Retail Management System](./src/09-retailManagementSystem) |
| 10 | [Serialized Employee Management System](./src/10-serializedEmployeeManagementSystem) |
| 11 | [Temperature Converter App](./src/11-temperatureConverterApp) |
| 12 | [Ticket Calculator App](./src/12-ticketCalculatorApp) |
### [Jupyter](/jupyter)
| # | Notebooks |
|:---:|:---|
| 1 | [Python Programming Notes](./jupyter/python_notes.ipynb) |
### [Notes](/notes)
| # | Topics |
|:---:|:---|
| 1 | [Classes](./notes/classes) |
| 2 | [SQLite3 Database](./notes/database) |
| 3 | [Files](./notes/files) |
| 4 | [Matplotlib](./notes/matplotlib) |
| 5 | [Tkinter GUI Apps](./notes/tkinter) |
| 6 | [Turtle Graphics](./notes/turtle) |