Difference between revisions of "OPS435 Python Weekly Schedule 2020 Fall"

From CDOT Wiki
Jump to: navigation, search
(Added Fall schedule. TODO change dates.)
 
(updated dates for fall)
Line 9: Line 9:
 
! Tasks/Labs
 
! Tasks/Labs
 
|- style="vertical-align: top; background: #ffffe0"
 
|- style="vertical-align: top; background: #ffffe0"
| 1: May 19-22
+
| 1: Sept 14 - 18
 
| <b>Course Overview</b>
 
| <b>Course Overview</b>
 
<ul>
 
<ul>
Line 56: Line 56:
 
</li>
 
</li>
 
|- style="vertical-align: top; background: #e0ffff"
 
|- style="vertical-align: top; background: #e0ffff"
| 2:May 25-29
+
| 2: Sept 21 - 25
 
| <b>Python Basics:</b>
 
| <b>Python Basics:</b>
 
<ul>
 
<ul>
Line 86: Line 86:
 
</li>
 
</li>
 
|- style="vertical-align: top; background: #ffffe0"
 
|- style="vertical-align: top; background: #ffffe0"
| 3:Jun 1-5
+
| 3: Sept 28 - Oct 2
 
| <b>Reusing Python Code:</b>
 
| <b>Reusing Python Code:</b>
 
<ul>Functions
 
<ul>Functions
Line 118: Line 118:
 
</li>
 
</li>
 
|- style="vertical-align: top; background: #e0ffff"
 
|- style="vertical-align: top; background: #e0ffff"
| 4:Jun 8-12
+
| 4: Oct 5 - 9
 
| <b>Basic Data Structures and String Manipulation:</b>
 
| <b>Basic Data Structures and String Manipulation:</b>
 
<ul>
 
<ul>
Line 154: Line 154:
 
</li>
 
</li>
 
|- style="vertical-align: top; background: #ffffe0"
 
|- style="vertical-align: top; background: #ffffe0"
| 5:Jun 15-19
+
| 5: Oct 12 - 16
 
| <b>Files, Exceptions:</b>
 
| <b>Files, Exceptions:</b>
 
<ul>
 
<ul>
Line 186: Line 186:
 
</li>
 
</li>
 
|- style="vertical-align: top; background: #e0ffff"
 
|- style="vertical-align: top; background: #e0ffff"
| 6:Jun 22-26
+
| 6: Oct 19 - 23
 
| <b>Mid-Term Test</b>
 
| <b>Mid-Term Test</b>
 
<ul>
 
<ul>
Line 198: Line 198:
 
</li>
 
</li>
 
|- style="vertical-align: top; background: #ffffe0"
 
|- style="vertical-align: top; background: #ffffe0"
| Break Week:<br />Jun 29-Jul 3
+
| Break Week:<br />Oct 26 - 30
 
|  
 
|  
 
|  
 
|  
 
|  
 
|  
 
|- style="vertical-align: top; background: #e0ffff"
 
|- style="vertical-align: top; background: #e0ffff"
| 7:Jul 6-10
+
| 7: Nov 2 - 6
 
| <b>Classes:</b>
 
| <b>Classes:</b>
 
<ul>
 
<ul>
Line 233: Line 233:
 
</li>
 
</li>
 
|- style="vertical-align: top; background: #ffffe0"
 
|- style="vertical-align: top; background: #ffffe0"
| 8:Jul 13-17
+
| 8: Nov 9 -13
 
| <b>Classes:</b>
 
| <b>Classes:</b>
 
<ul>
 
<ul>
Line 255: Line 255:
 
</li>
 
</li>
 
|- style="vertical-align: top; background: #e0ffff"
 
|- style="vertical-align: top; background: #e0ffff"
| 9:Jul 20-24
+
| 9: Nov 16 - 20
 
| <b>Configuration management:</b>
 
| <b>Configuration management:</b>
 
<ul>
 
<ul>
Line 267: Line 267:
 
</li>
 
</li>
 
|- style="vertical-align: top; background: #ffffe0"
 
|- style="vertical-align: top; background: #ffffe0"
| 10:Jul 27-31
+
| 10: Nov 23 - 27  
 
| <b>Python Networking</b>
 
| <b>Python Networking</b>
 
<ul>
 
<ul>
Line 280: Line 280:
 
</ul>
 
</ul>
 
|- style="vertical-align: top; background: #e0ffff"
 
|- style="vertical-align: top; background: #e0ffff"
| 11:Aug 3-8
+
| 11: Nov 30 - Dec 4
 
| <b>Final Assessment Test Review</b>
 
| <b>Final Assessment Test Review</b>
 
|  
 
|  
 
| <b>Working on Assignment 2 for final assessment test</b>
 
| <b>Working on Assignment 2 for final assessment test</b>
 
|- style="vertical-align: top; background: #ffffe0"
 
|- style="vertical-align: top; background: #ffffe0"
| 12:Aug 10-14
+
| 12: Dec 7 - 11
 
| <b>Final Assessment</b>
 
| <b>Final Assessment</b>
 
|  
 
|  
 
|  
 
|  
 
|}
 
|}

Revision as of 15:03, 13 September 2020

OPS435 Weekly Task Update
week Topics Reading/Reference Tasks/Labs
1: Sept 14 - 18 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: Sept 21 - 25 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: Sept 28 - Oct 2 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: Oct 5 - 9 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: Oct 12 - 16 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: Oct 19 - 23 Mid-Term Test
  • Date: THIS WEEK
  • Topics: Lab 1 to Lab 5 and All topics covered from week 1 to week 5
Break Week:
Oct 26 - 30
7: Nov 2 - 6 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
8: Nov 9 -13 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
9: Nov 16 - 20 Configuration management:
  • Fabric
  • Ansible
10: Nov 23 - 27 Python Networking
  • Network Client
  • Network Server
  • Asynchronous Python Networking
  • Assignment 2
  • Due on Final Assessment Week - Please check with your professor for the exact date.
11: Nov 30 - Dec 4 Final Assessment Test Review Working on Assignment 2 for final assessment test
12: Dec 7 - 11 Final Assessment