Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.67K
~266 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for wandie

Maby an other short method with the help of List Comprehensions: (very fast) [ICODE][[id,name]for id in range(2)for name in range(3)][/ICODE] Result: [[0, 0], [0, 1], [0, 2], [0, 3], [1, 0], [1, 1], [1, 2], [1, 3], [2, 0], [2, 1], [2, 2], [2, 3]] ore in this way [ICODE][[[id]for …

Member Avatar for PlagTag
0
266

The End.