Untitled

 avatar
unknown
python
2 years ago
94 B
5
Indexable
table = [[1,2],[3,4],[5,6]]
hex_table = [[hex(x) for x in y] for y in table]
print(hex_table)
Editor is loading...