Post by M.fathy » Wed Sep 12, 2018 4:55 pm
Post by pythoncoder » Wed Sep 12, 2018 4:58 pm
Code: Select all
>>> from array import array >>> a = array('i', range(10)) >>> a array('i', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> max(a) 9 >>> min(a) 0 >>>
Post by M.fathy » Wed Sep 12, 2018 6:51 pm
Return to “General Discussion and Questions”