8000 #1 Set up project - directory, python main, readme · tobiomojayowork/intro-to-python@01ac539 · GitHub
[go: up one dir, main page]

Skip to content

Commit 01ac539

Browse files
committed
ihf-code#1 Set up project - directory, python main, readme
1 parent d44af13 commit 01ac539

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed

COMMAND_LINE_PROJECT/Readme.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Intro to Python
2+
The course is a total beginner’s introduction to programming. It takes students from zero to being able to write their own programs in 10 sessions. It teaches the logic and mindset needed to break down complex tasks into individual steps and have a computer execute them. It opens up students minds to how technology and applications they use on a daily basis work, and allows them to get inspired by how technology can change their everyday lives. Most importantly it shows them that no matter their background/knowledge level/age, that they can learn new things and that programming is something they can do and (mostly like) enjoy.
3+
4+
5+
# Prerequisites:
6+
- [ ] Create a GitHub account [here](https://github.com/) if you don't have one already.
7+
- [ ] Create a Replit account through your GitHub account [here](https://replit.com/). If you already have a Replit account, go to [Account](https://replit.com/account), and in the "Connected services" section, connect to GitHub.
8+
9+
# Syllabus
10+
11+
The course breakdown is as follows:
12+
13+
## Session 0 - Fundamentals
14+
• Operating systems (OS)
15+
• Command-line interface (CLI)
16+
• Bourne Again SHell (Bash)
17+
• Source control management (SCM) - Git
18+
• Integrated development environment (IDE)
19+
• Markdown
20+
21+
This session introduces students to operating systems, how developers work collaboratively and how to use the computer via the command-line interface. They also learn about how developers use IDEs to make their life easier and how to write simple formatted documents using Markdown.
22+
23+
## Session 1 & 2 – Getting started with Python
24+
• Intro to programming
25+
• “Hello World”
26+
• Variables
27+
• Basic Math
28+
• Accepting input
29+
30+
These sessions outline what programming is and gets attendees writing and running their first programs. They learn about how to output information, calculate basic maths, accept user input and start to process it.
31+
32+
## Session 3 & 4 – Conditionals
33+
• If/else statements
34+
• Collections - Lists
35+
• For loops
36+
37+
These sessions get students using basic logic to adapt the flow of execution within their programs. They also learn about their first basic data structure and loop through them to show the same piece of code being run multiple times.
38+
39+
## Session 5 & 6 – Loops & Collections
40+
• While loops
41+
• Collections – Dictionaries
42+
• Advanced Lists
43+
44+
These sessions extends the students basic knowledge around data structures and how to loop through code in more ways. They learn how to extend their programs by including modules of code written by others.
45+
46+
## Session 7 – Functions
47+
• What / Why / How
48+
49+
These sessions introduce functions, what they are, why they are used, how to use them. It takes all the knowledge they have previously learnt and teaches them how to start writing more manageable and re-usable code.
50+
51+
## Session 8 – Files
52+
• Read
53+
• Write
54+
55+
These sessions teaches how to read and write data to files. Students calculate values from data within files, and write results out to other files. It builds from their existing knowledge and gets them to use the logic they have learnt to process data on a larger scale.
56+
57+
## Session 9 - Software development lifecycle (SDLC) & Command-line project
58+
• SDLC
59+
• Agile Model
60+
• Programming principles
61+
• How to build a Command-line project
62+
• Kanban
63+
64+
This session introduces students to various strategies, tools and models developers (and not only) use to work efficiently. They will also learn how to build a command line app on their own using all the principles, skills and knowledge accumulated.
65+
66+
67+
68+
69+
# Suggested reads
70+
71+
- What is the [Command Line](https://learntocodewith.me/learn/command-line/) and why do we use it?
72+
- What is an [IDE](https://www.redhat.com/en/topics/middleware/what-is-ide)?
73+
- Very interesting [article](https://www.bloomberg.com/graphics/2015-paul-ford-what-is-code/) (although quite lengthy) about "What is code?".
74+
- Basic [programming principles](https://www.hongkiat.com/blog/basic-programming-principals/).
75+
- What is [Kanban](https://kanbanize.com/kanban-resources/getting-started/what-is-kanban)?

COMMAND_LINE_PROJECT/my_python_app.py

Whitespace-only changes.

0 commit comments

Comments
 (0)
0