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
‘Mastery #20’ Articles at TC101 Fall 2015
Introduction to Programming Python and C++

Tag Archives: Mastery #20

For loops with “for”

We have already seen how to do loops with “while”, and now we will learn how to use the “for” statement. The way you write a for is the following: “for i in x:”, after that you fill up its guts with what action you want it to perform. The “in” part makes it so … Continue reading For loops with “for”

Using Loops FOR and WHILE

Loops Loops are used to repeat a block of code. Being able to have your program repeatedly execute a block of code is one of the most basic but useful tasks in programming — many programs or websites that produce… Continue Reading →

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).