is it possible to remove all the formatting from an output
currently i get the values :
((4,), (4,), (88, 59, 21, 38))
displayed in the terminal, however is there a way to strip away the brackets so i only get the values ?
I know it should be simple but cant see to find it on google
Thanks
to get this i am using the command :
print "Header : ", circ_id, command, ip
where where circ_id etc have been derived from earlier on in the application from unpacking a packet for example the ip was derived from :
ip = struct.unpack(byte_string, payload[start:end])
so i guess the question is how in python can you merge various tuples into a single tuple ?