I have a list in python that I am printing to the screen. The current format is
Option Key: [0, 3, 6, 8, 8, 5, 2, 0, 7, 1, 9, 5, 0, 7, 7, 4, 2]
I would like it to be Option Key: 0 3688 5207 1950 7742
I think I need to do something with the .format method but I"m not sure.
The code looks like this
option_key.append(int(m_key_code))
print("Option Key: ", option_key)