Unpack() with others in a print()
Posted: Mon Sep 07, 2015 8:47 am
Hi!
I have not seen any reason why are the following print commands makes different output:
a={1,2,3,4,5}
nprint(unpack(a),"*") -> result: 1 *
while
nprint("*",unpack(a)) -> result: * 1 2 3 4 5
???
I have not seen any reason why are the following print commands makes different output:
a={1,2,3,4,5}
nprint(unpack(a),"*") -> result: 1 *
while
nprint("*",unpack(a)) -> result: * 1 2 3 4 5
???