Is there any book or site on python algorithms which asks more and
teaches less, I don't want to get bored, and at the same time I want
to learn and act more. I use ubuntu. (just in case if its needed).
#ALGORITHMS
--
Chetan H Harjani
IIT Delhi
--
http://mail.python.org/mailman/listinfo/python-
Thanks Alec for the link. U know I wanted to read this book by Simon
Singh -> The Code Book, I hear its good.
Thanks Nizamov for the link, I am really looking forward to join the
class, and since its free, it is totally an asset.
Yes Thijs I have seen this book, and since its such a big book, I a
On Thu, Jan 26, 2012 at 2:22 AM, Martin Schöön wrote:
> On 2012-01-25, Chetan Harjani wrote:
>> Thanks Alec for the link. U know I wanted to read this book by Simon
>> Singh -> The Code Book, I hear its good.
>>
> It indeed is. I only remember one error, an error ever
why tuples are immutable whereas list are mutable?
why when we do x=y where y is a list and then change a element in x, y
changes too( but the same is not the case when we change the whole value in
x ), whereas, in tuples when we change x, y is not affected and also we cant
change each individual e
x=y="some string"
And we know that python interprets from left to right. so why it doesnt
raise a name error here saying name 'y' is not defined?
another example:
(1,2) + 3,
here, python raises a TypeError "can only concatenate tuple(not int) to
tuple" but we know (3,) is a tuple as seen by follo
wrong?
On Fri, Jun 24, 2011 at 10:02 AM, Chetan Harjani
wrote:
> x=y="some string"
> And we know that python interprets from left to right. so why it doesnt
> raise a name error here saying name 'y' is not defined?
>
> another example:
> (1,2) + 3,
>
Hello friends,
I have learned the basic syntax of python through the book HOW TO THINK LIKE
A COMPUTER SCIENTIST n by reading first 10-11 chapters of Apress-BEGINNING
PROGRAMMING FROM NOVICE TO PROFESSIONAL.
(btw it was really very boring)
I am looking forward to learn further by understanding so
Thanks Michael :) . I will keep your suggestions in mind.
On Fri, Aug 26, 2011 at 9:01 AM, Chetan Harjani wrote:
> Hello friends,
>
> I have learned the basic syntax of python through the book HOW TO THINK
> LIKE A COMPUTER SCIENTIST n by reading first 10-11 chapters of
> A