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
charliegdrummer’s Articles at TC101 Fall 2015, Page 3
Introduction to Programming Python and C++

Author Archives: charliegdrummer

Quiz 07: A good time to think

The quiz 07 was divided in two parts; the first asked for a program, with a function, that gives you tha distance between two points in coordinates x and y. It was easy, just had to use the pythagoream theorem, the one that says that, … Continúa leyendo Quiz 07: A good time to think

Quiz 07: A good time to think

The quiz 07 was divided in two parts; the first asked for a program, with a function, that gives you tha distance between two points in coordinates x and y. It was easy, just had to use the pythagoream theorem, the one that says that, … Continúa leyendo Quiz 07: A good time to think

Masteries From partial 1

User input (text based) in Python (basic) – Input and output, the basics Basic output (print) in Python – Input and output, the basics Use of the conditional “if” – The basics of programming Use of “else” with a conditional… Continue Reading →

Masteries From partial 1

User input (text based) in Python (basic) – Input and output, the basics Basic output (print) in Python – Input and output, the basics Use of the conditional “if” – The basics of programming Use of “else” with a conditional – The basics of programming Use … Continúa leyendo Masteries From partial 1

Quick info: Comments in python: Mastery 7

Quick info: How to put comments in python you just add # at the start of a line that’s all Well… The comments are used in programing to write notes inside the code directed to any observer or coworker, the comments does not affect the … Continúa leyendo Quick info: Comments in python: Mastery 7

Quick info: Comments in python: Mastery 7

Quick info: How to put comments in python you just add # at the start of a line that’s all Well… The comments are used in programing to write notes inside the code directed to any observer or coworker, the… Continue Reading →

The ranges and lists: Masteries 23, 25

In this post, you will learn how to make lists directly, and to combine it with for and ranges. First, a list in pyton is a group of elements, it could be anything, they are separated by a comma: x = [1,2345.34,name,”hello”, “..-´{{+}”] They are … Continúa leyendo The ranges and lists: Masteries 23, 25

The ranges and lists: Masteries 23, 25

In this post, you will learn how to make lists directly, and to combine it with for and ranges. First, a list in pyton is a group of elements, it could be anything, they are separated by a comma: x… Continue Reading →

Input and output, the basics: Masteries 10, 28

One of the basic things every one who learns programming do is to say Hello to hte world, and to make the user say hello to the world; in python 3 terms, it would be the print command, and the… Continue Reading →

Input and output, the basics: Masteries 10, 28

One of the basic things every one who learns programming do is to say Hello to hte world, and to make the user say hello to the world; in python 3 terms, it would be the print command, and the input command. So really really … Continúa leyendo Input and output, the basics: Masteries 10, 28

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