Introduction to Python
+Class & Curriculum Outline
++
How to get started in Python!
++ Brief Overview +
-
-
-
-
how to get started in
-python
-- confused about how to get started with - python? here's a step-by-step learning plan - that walks you through how to learn to make - awesome programs, with no prior experience! -
-
-
- - learned skills: -
- --
-
- data types and operators -
- booleans and conditional statements - (coming soon!) -
- while loops and for loops -
- lists -
- creating functions +
- Data Types and operators +
- Booleans and Conditional Statements +
- While Loops & For Loops +
- Lists +
- Creating Functions
+ Confused about how to get started with python? Here's a step-by-step learning plan + that walks you through how to learn to make awesome programs, with no prior experience! +
+ +
+ Learned Skills:
+
- -
+
-
+
-
-
- {% include py1-lesson-card.html group="fundamentals"%}
- {% include py1-lesson-card.html group="flow"%}
-
+
+
+ + Lessons +
+ +
+ {% for lesson in site.py1 %}
+
+
+
+
+ {% endfor %}
+
+
+ #{{lesson.num}} + {{lesson.title}} +
+-
+ {% for brief in lesson.agenda %}
+
- {{ brief.text }} + {% endfor %} +
+ {% if lesson.slides_link %}
+
+ slides
+
+ {% endif %}
+ {% if lesson.video_link %}
+
+ video
+
+ {% endif %}
+ {% if lesson.worksheet_link %}
+
+ worksheet
+
+ {% endif %}
+
+ More Resources
++ We provided some additional Python resources - they're all helpful! +
+-
+
- + Boolbots + +
- + Codecademy: Learn Python + +
- + w3schools: Python Tutorial + +