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

Author Archives: fersabal

Cars

#Jorge Fernando Saldaña Cabal #A01350730 archivo = open(“carros.txt”, “r”) lineas = archivo.readlines() #def primero: y = 0 contcity = 0 for i in lineas: x = (i[52:54]) if (x != “”): x = float(x) y = y + x contcity… Continue Reading →

Open and read files

This was a very challegnig thing i’ve got to get through in  the semester. To learn how to open and read files i had to read a lot of times the same thing of the “How to think like a… Continue Reading →

BONUS POINTS

In the next video i give future students some tips on how to succed on Kens class. Enjoy it!

Sent work via Github

In the following video i show you how to use the basics of Github and how you can send your work so other people can see your code.

Show you i installed linux

The following video will show youi have installed linux in my personal computer:

Estimating e

This task was not that hard. We had to make a function that computes an estimation of e, which is a number very used in finances. The trick was our number must have the accuracy given by the user. Here… Continue Reading →

Yo soy 196

This task was of the most challenging ones of the entire course. We had to make a programm to find candidates of lychrel numbers in a given range. First of all i had to look what a lychrel number was… Continue Reading →

Recursion for repetitive algorithms

Sometimes we will be coding a fucntion that need to be more than one time. So we will be facing a problem since mayve we would be able to solve our problem by making our algorithm longer but at the… Continue Reading →

Nesting conditionals

So far we’ve seen how to use loops, while and for loops. And we’ve learned that they are very useful in almost any program we want to do. But there will be a time when our programms become complex when… Continue Reading →

Quiz11

For this quiz we had to make two programms. One that calculate the value o e with the given accuracy by the user and a program that search for the word banana in a text file. I struggled with the… 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).