diff --git a/week02-Basic_Programming_with_Python/test_typechecks.py b/week02-Basic_Programming_with_Python/test_typechecks.py new file mode 100644 index 0000000..1c5b6c0 --- /dev/null +++ b/week02-Basic_Programming_with_Python/test_typechecks.py @@ -0,0 +1,6 @@ +def say_hello(time: str, people: str) -> str: + return 'Good ' + time + ', ' + people + + +say_hello('afternoon', 'folks') +say_hello('afternoon', 1) \ No newline at end of file diff --git a/week03-Advanced_Programming_with_Python/figures/bool.png b/week03-Advanced_Programming_with_Python/figures/bool.png new file mode 100644 index 0000000..4785507 Binary files /dev/null and b/week03-Advanced_Programming_with_Python/figures/bool.png differ diff --git a/week03-Advanced_Programming_with_Python/figures/changes_3.6.png b/week03-Advanced_Programming_with_Python/figures/changes_3.6.png new file mode 100644 index 0000000..f527828 Binary files /dev/null and b/week03-Advanced_Programming_with_Python/figures/changes_3.6.png differ diff --git a/week03-Advanced_Programming_with_Python/figures/changes_3.7.png b/week03-Advanced_Programming_with_Python/figures/changes_3.7.png new file mode 100644 index 0000000..7f10bad Binary files /dev/null and b/week03-Advanced_Programming_with_Python/figures/changes_3.7.png differ diff --git a/week03-Advanced_Programming_with_Python/figures/getterssetters.png b/week03-Advanced_Programming_with_Python/figures/getterssetters.png new file mode 100644 index 0000000..f79d866 Binary files /dev/null and b/week03-Advanced_Programming_with_Python/figures/getterssetters.png differ diff --git a/week03-Advanced_Programming_with_Python/figures/reduce_diagram.png b/week03-Advanced_Programming_with_Python/figures/reduce_diagram.png new file mode 100644 index 0000000..2cbb31e Binary files /dev/null and b/week03-Advanced_Programming_with_Python/figures/reduce_diagram.png differ