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

Tag Archives: Mastery 23

Creation and use of Tuples and Lists in Python

Both tuples and lists are bundles of data bound together under a single index. The difference radiates in both the syntax and the fact that the tuple is immutable, and the list can be altered. The difference in syntax between a list and a tuple is that to create a list you use “[ ]” … Continue reading Creation and use of Tuples and Lists in Python

Creation and use of Vectors in C++

A vector is a container in the C++ Standard Library (a bunch of stuff which sort of comes “bundled” with C++) which is essentially just an array that can grow and shrink in size. These things have been highly optimized… Continue Reading →

Mastery 23 y 13

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