erribly worng plz).
But i still want to know if theres a method like __insertMethodNameHere__ that does it for me... or if you think it's a nice thing to have...i'm REALLY SORRY for my REALLY BAD English... so..., don't hate me please..
And I'm sorry if this question wasted
I think my question is clear.., is there any way to print any text on a portable way?..., and actually, i don't know how to print at all.., just give me some pointers, name a module, and i can investigate for myself.. sorry for my english, thanks in advance..
ps: i prefer a Standard Library module
If I do:
a = [ [0,0,0], [0,0,0], [0,0,0] ]
a[0][1] = 1
I get:
a = [ [0,1,0],[0,0,0],[0,0,0] ]
as expected
But if I do:
a = [ [0] * 3 ] * 3
a[0][1] = 1
I get
a = [[0,1,0],[0,1,0],[0,1,0]]
AFAIC, "*" is supposed to generate multiple copies of the given token.
Therefore I thought both cases w