Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152
finntec’s Articles at TC101 Fall 2015, Page 2
Introduction to Programming Python and C++

Author Archives: finntec

Mastery26 & Mastery27

Those are the masteries about

Creation and use of strings in Python
Creation and use of dictionaries in Python

 
You can find my video here:

Mastery8

This is the masteriy about

Python conventions (Zen of Python)

You can find my video here:

Mastery7

This is the masteries about

Use of comments in Python

You can find my video here:

Mastery5 & Mastery6

Those are the masteries about
 

Demonstrate use of Linux sufficient for quizzes/exams
Install Linux on their own computer

 
You can find my video here:

Mastery3 & Mastery4

Those are the masteries about
 

Create accounts: Blog, Twitter, GitHub
Submit work via Blog RSS and GitHub

 
You can find my video here:

Mastery1 & Mastery2

Those are the masteries about
 

Ability to create Python file and run from command line
Ability to create Python project in IDE and run inside the ID

You can find my video here:

 

#quiz11

This is the solution to question#1 and this to question#2.

Bonus Quiz – ECOS

I just finished the teacher evaluations (ECOS). It is an important tool for teachers to improve. Any student who didn’t participate in teacher evaluations should not have the right to whine about class.

WSQ10 – Lists

The code is not correct yet! You can find it here: https://repl.it/BTRd/1 This is the first WSQ about lists. Those two souces helped me a lot: first and second. Here’s the code: list1 = [] for i in range(0,7):     print(“Give me value number”, i+1, “, please.”)     x = float( input())     list1.append(x) print(“The […]

WSQ09 – Factorial Calculator

The code is not correct yet! You can find it here: https://repl.it/BTRP In this WSQ I wanted to try all three approaches: a while-loop, a for-loop and recursion. In the beginning I had some trouble with the recursion but then I looked up how it is done in c++ and adapted the idea to Python […]

What should you work on?

Week #12 and more partial exams for you.

For this week's readings:
C++ (TC1017) should either be looking at support for your project, ImageMagick C++ libraries are a good start.
Python (TC1014) should be finishing chapter 11 (Dictionaries).