FOSS Workshop
Hello, if you don’t know already, I’m a Computer Science student from Damascus University Syria. My friends and I are working on an Open Source Free Software workshop here at the faculty of Computer Science, the workshop will take place on February 2009, but we are gathering some resources and information from now. The workshop [...]
Just a month
I’m sorry to announce that I won’t be able to post any posts until the end of January 2009, and that’s because of my university exams Thank you for visiting me, and see ya soon P.S. Wish me luck and high marks Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share [...]
I'm Learning Python part 7
I’m Learning Python (part 7) Apology: First of all I wanna apologize for being late with this part, I’ve had busy days first during Shaam 2008 expo and second during some studies at the college and last busy time past launching Bawabaty project. Numbers: Numbers in Python are divided into 5 sections: Integers: Such as: [...]
I'm Learning Python part 6
I’m Learning Python (part 6) Dictionaries Dictionaries in Python are like dictionaries in life, they consist of key-value pairs, each key maps a value, values can be any object type, and keys also. Keys must be unique, I mean that we can’t have two identical keys with different values. Dictionaries are defined using curly braces [...]
I'm Learning Python (part 5)
I’m Learning Python (part 5) String Is Immutable? Last time I told you to try to change a specified character, you must have failed if you tried: >>> s[0] = ‘c’ The error you’d get is: TypeError: ‘str’ object does not support item assignment This means that strings are immutable, so are core-types, numbers and [...]
