
May 25, 2017, 06:45 AM
|
 |
|
|
Member Since: Jan 2017
Location: arcturus
Posts: 1,243
|
|
Idle coding with python ended with idle combinatorics. The code just outputs combinations of numbers inside combination of sets. All packed in a square. I love squares. And circles. And triangles.
Code:
#!/usr/bin/python##
dict = {0, 1, 2, 3}
dic = {1, 2, 3, 4}#
di = {2, 3, 4, 5}##
d = {3, 4, 5, 6}###
print dict, d, di##
print dic, di, d###
print di, dic, dict
print d, dict, dic#
__________________
that weird hidden space:
http://namshub.netii.net/
|