Difference between revisions of "OPS435 Python Weekly Schedule 2021 Winter"

From CDOT Wiki
Jump to: navigation, search
(Created page with "Category:OPS435Category:rchan {| class="wikitable" cellspacing="0" width="100%" cellpadding="5" border="1" style="text-align: left; vertical-align: top; border-spacing...")
 
Line 53: Line 53:
 
</ul>
 
</ul>
 
| <ul>
 
| <ul>
   <li>[[OPS435_Python_Lab_0 |Lab 0:<br>Introduction to git and github]]</li>
+
   <li>[[OPS435_Online_Lab1 |Lab 1:<br>Introduction to git, github and Python]]</li>
  <li>[[OPS435_Python3_Lab_1 |Lab 1:<br>Setup &amp; Using Python]]</li>
 
 
</ul>
 
</ul>
 
|- style="vertical-align: top; background: #f9f9f9"
 
|- style="vertical-align: top; background: #f9f9f9"
Line 84: Line 83:
 
</ul>
 
</ul>
 
| <ul>
 
| <ul>
   <li>[[OPS435_Python3_Lab_2 |Lab 2:<br>Understanding Python Code]]</li>
+
   <li>[[OPS435_Online_Lab2 |Lab 2:<br>Understanding Python Code]]</li>
 
</ul>
 
</ul>
 
|- style="vertical-align: top; background: none"
 
|- style="vertical-align: top; background: none"
Line 116: Line 115:
 
</ul>
 
</ul>
 
| <ul>
 
| <ul>
   <li>[[OPS435_Python3_Lab_3 |Lab 3:<br>Reusing Python Code]]</li>
+
   <li>[[OPS435_Online_Lab3 |Lab 3:<br>Reusing Python Code]]</li>
 
</ul>
 
</ul>
 
|- style="vertical-align: top; background: #f9f9f9"
 
|- style="vertical-align: top; background: #f9f9f9"
Line 152: Line 151:
 
</ul>
 
</ul>
 
| <ul>
 
| <ul>
   <li>[[OPS435_Python3_Lab_4 |Lab 4:<br>Basic Data Structure &amp; String Manipulation]]</li>
+
   <li>[[OPS435_Online_Lab4 |Lab 4:<br>Basic Data Structure &amp; String Manipulation]]</li>
 
</ul>
 
</ul>
 
|- style="vertical-align: top; background: none"
 
|- style="vertical-align: top; background: none"
Line 184: Line 183:
 
</ul>
 
</ul>
 
| <ul>
 
| <ul>
   <li>[[OPS435_Python3_Lab_5 |Lab 5:<br>Files &amp; Error Handling]]</li>
+
   <li>[[OPS435_Online_Lab5 |Lab 5:<br>Files &amp; Error Handling]]</li>
 
</ul>
 
</ul>
 
|- style="vertical-align: top; background: #f9f9f9"
 
|- style="vertical-align: top; background: #f9f9f9"
Line 235: Line 234:
 
</ul>
 
</ul>
 
| <ul>
 
| <ul>
   <li>[[OPS435_Python3_Lab_6 |Lab 6:<br>Writing Python Classes]]</li>
+
   <li>[[OPS435_Onlie_Lab6 |Lab 6:<br>Writing Python Classes]]</li>
 
</ul>
 
</ul>
 
|- style="vertical-align: top; background: #f9f9f9"
 
|- style="vertical-align: top; background: #f9f9f9"
Line 257: Line 256:
 
</ul>
 
</ul>
 
| <ul>
 
| <ul>
   <li>[[OPS435_Python3_Lab_7 |Lab 7:<br>Classes, Objects &amp; scope]]</li>
+
   <li>[[OPS435_Online_Lab7 |Lab 7:<br>Classes, Objects &amp; scope]]</li>
 
</ul>
 
</ul>
 
|- style="vertical-align: top; background: none"
 
|- style="vertical-align: top; background: none"
Line 268: Line 267:
 
|  
 
|  
 
| <ul>
 
| <ul>
   <li>[[OPS435_Python3_Lab_8 |Lab 8:<br>Configuration management]]</li>
+
   <li>[[OPS435_Online_Lab8 |Lab 8:<br>Configuration management]]</li>
 
</ul>
 
</ul>
 
|- style="vertical-align: top; background: #f9f9f9"
 
|- style="vertical-align: top; background: #f9f9f9"

Revision as of 00:19, 7 January 2021

OPS435 Weekly Task Update
week Topics Reading/Reference Tasks/Labs
1: Jan 11-15 Course Overview
  • Introduction
  • Why Python?
  • Natural languate & formal language

git and github.com

Python components:

  • keywords
  • symbols
  • modules
  • objects

Python Shell

  • builtin modules
  • builtin functions:
    • help()
    • dir()
    • type()
  • keyword: import
  • Think Python: Chapter 1
    • What is a program?
    • Input, process (sequence, looping, repetition), output
    • complier, interpreter
    • Debugging
  • Automate with Python: Chapter 1 & 2
    • Python Basics
    • Flow Control
2:Jan 18-22 Python Basics:
  • Objects
  • Methods and properties
  • Operators
  • expressions
  • statements
  • Think Python: Chapter 2
    • Variable, expressions and statements
    • Script mode and interactive mode
    • Python math operators and order of operations
    • String operation '+' and '*'
  • Automate with Python: Chapter 3 & 4
    • Functions
    • Lists
3:Jan 25-29 Reusing Python Code:
    Functions
  • keyword: def
  • function parameters
  • return value
  • keyword: None
  • Think Python: Chapter 3 Functions
    • Function calls
    • Adding new functionse
    • Definitions and usess
    • Flow of execution
    • Parameters and arguments
    • Variables and parameters
    • Fruitful functions and void functions
  • Automate with Python: Chapter 5 & 6
    • Dictionaries and structuring data
    • Manipulating Strings
4:Feb 1-5 Basic Data Structures and String Manipulation:
  • Integers
  • Strings
  • Tuples
  • Lists
  • Dictionaries
  • Sets
  • Think Python: Chapter 5 Conditionals and recursion
    • Boolean expression
    • Logical operators
    • Conditional execution
    • Alternative execution
    • Chained conditionals
    • Nested conditionals
    • Recursion
    • Infinite recursion
    • Keyboard Input
  • Automate with Python: Chapter 7 & 8
    • Regular Expressions
    • Reading and Writing Files
5:Feb 8-12 Files, Exceptions:
  • File Handling
  • Error Handling
  • Builtin error types
  • Think Python: Chapter 14 - Files
    • Reading and writing
    • Format operator
    • Filenames and paths
    • Catching exception
    • Databasess
    • Picking
    • Pipes
    • Writing modules
  • Automate with Python: Chapter 9 & 10
    • Organizing Files
    • Debugging
6:Feb 15-19 Review and Catch up
7:Feb 22-26 Mid-Term Test
  • This week.
  • Topics: Lab 1 to Lab 5 and All topics covered from week 1 to week 5
Catch up
Break Week:
Mar 1-5
8:Mar 8-12 Classes:
  • Components of a class
  • Classes and objects
  • Think Python: Chapter 15 - Classes and objects
    • Programmer-defined types
    • Attributes
    • Instances and return values
    • Objects are mutable
    • Copying
  • Think Python: Chapter 16 - Classes and functions
    • Pure functions
    • Modifiers
    • Prototyping versus planning
9:Mar 15-19 Classes:
  • Designing classes
  • Understanding scope
  • Think Python: Chapter 17 - Classes and methods
    • The __init__ method
    • The __str__ methond
    • The __repr__ method
    • Operator overloading
    • Type-based dispatch
    • Polymorphism
10:Mar 22-26 Configuration management:
  • Fabric
  • Ansible
11:Mar 29- Apr 2 Python Networking
  • Network Client
  • Network Server
  • Asynchronous Python Networking
12: Apr 5-9
13:Apr 12-16 Exam Review
Exam Week:
Apr 19-23