Drumbeat/p2pu/courses/python-programming

From MozillaWiki
< Drumbeat‎ | p2pu‎ | courses
Jump to: navigation, search

Course Details

Introductory programming course using the Python programming language. The course will encourage learners to explore fundamental concepts of programming such as data types (strings, integers, floats, &c), lists, tuples, loops, control structures, functions, and more.

Facilitator: Brylie Oxley

Prerequisite(s): Intro to personal computers (Linux, Macintosh, Windows).

Users will need to be comfortable downloading and installing software on their chosen Operating System. Many Unix (including Mac) and Linux distributions already include Python.

Motivation:

Students, teachers, scientists, and people in many walks of life can benefit from knowledge of a programming language. Learning to program offers greater insight into formal logic and the principles of computation. It is easier to complete repetitious tasks when one knows how to make simple scripts. The more active hackers we have the faster our technology and collective culture will evolve.

Audience

Novice and intermediate computer users, scientists, teachers, artists, and students.

P2PU Source:

GNU.media research regarding Open Educational Resources and Free Software development.

This course was inspired by personal/professional research in the realm of Open Educational Resources, such as those available in the MIT Open Courseware and other university courses.


Repeat: Yes

Status: New

Learning Resources

Several free books are available:

Learning Style

Collaborative and collective knowledge sharing. Project (experience) based learning.

Learning Outcome(s)

Upon completion of the course, learners will have the following abilities and competencies:

  • Source documentation
  • Creating and modifying variables
  • Working with various data types:
    • strings
    • numbers
    • tuples
    • lists
    • sets
    • dictionaries
    • bytes
  • Operators
  • Evaluating expressions and statements
  • Iterating over lists, tuples, &c
  • Indexing and slicing strings, lists, &c
  • String replacement fields (PyDocs)
    • Format Specifiers
  • Flow/Decision control
    • Loops
    • Conditional statements
  • Mulitple assignment
  • Defining functions
    • Documentation strings
    • Function parameters
  • Accepting user input
  • General debugging
    • Syntax errors
    • Semantic errors
    • Exception handling
      • Creating custom exceptions
  • Creating classes
    • Class instances
  • Creating and organizing modules
    • Importing modules
  • Introduction to Python standard library
    • os
    • glob
    • sys
    • time
    • unittest (Video)
  • Inheritance
  • Comprehensions
  • Linked lists
  • Abstract Data Types
    • Basic Design Patterns (Video)
  • Metaprogramming