An open API service indexing awesome lists of open source software.

https://github.com/simpson-computer-technologies-research/apc1-2

Learn the Python Programming Language in Week 1 and 2 of my Advanced Programming Club
https://github.com/simpson-computer-technologies-research/apc1-2

coding learn programming python

Last synced: 10 months ago
JSON representation

Learn the Python Programming Language in Week 1 and 2 of my Advanced Programming Club

Awesome Lists containing this project

README

          

# Advanced Programming ![Stars](https://img.shields.io/github/stars/Simpson-Computer-Technologies-Research/APC1-2?color=brightgreen) ![Watchers](https://img.shields.io/github/watchers/Simpson-Computer-Technologies-Research/APC1-2?label=Watchers)
![maxresdefault](https://user-images.githubusercontent.com/75189508/194362463-7f25767e-9d8d-4240-a5f1-1134ebd8e734.jpg)

# About
- Learn how to write clean, optimized python code
- Learn about the Python Programming Language

# Week 1 and 2 Final Project

Prize

- Whoever develops the best program will win 5$
- I will be using a point system to determine the winner..
- This means that if you're code does not follow project requirements or the code is messy, slow and unorganized, you will lose points.

Project Must Include

- Minimum of 1 class
- Minimum of 1 user input
- Minimum of 1 list or dictionary variable
- Minimum of 3 statements (if, elif, else)
- Minimum of 2 for loops and 1 while loop
- Minimum of 1 import (random, string, doesn't matter)
- Minimum of 3 functions (lambda or basic), (1 requires parameters), (1 returns value)

Syntax Requirements

- All of the above inclusions must use the proper demonstrated syntax. Examples shown below..

```py

# // Variables
my_list: list[str] = ['a', 1, 0.1]

# // Functions
def a_function(param: str) -> str:
return param

# // Statements
if var:
pass

elif not var:
pass

```

# License
MIT License

Copyright (c) 2022 Tristan Simpson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.