First time here? Check out the FAQ!
answered 2016-11-13 19:09:15 +0100
An example:
S = 'my message' print S L = list(S) print L L_int = [ord(s) for s in L] print L_int print [chr(i) for i in L_int] print ''.join([chr(i) for i in L_int]) print M = matrix(2,5,L_int) M