Learning Python

I have been studying Python, by reading Python Essentials by Steven Lott. It has shown me the basis of the language so far. Coming from a C background, I will be comparing data types to C data types.

The array data structures   like Tuples, where you can set a static fixed list. Like

#C
static int myArray[3] = { 1,2,4,5 };

The list structures is very flexible similar to
int list[3];

the difference is in python you can add a element to the list without having a new object to move in to.

I find the Python language powerful, and it hides the nitty gritty.  You do not have to manage your own memory.

It will be fun to learn. One goal I have for this is to rewrite my LED sign software.

About Faye Bell

Designer, Artist, Techie, Programer, DOER
This entry was posted in Programing. Bookmark the permalink.