There is no need to turn the bytearray into a list as it can already be treated as one, can be considered an 'array' for non-Python folk.The data I actually want to work with is ...\x02enOmega\...
What would be a proper way to get this data value only from the Tag or at least to "convert" the bytearray to a list where I can access this value only?
I would guess the data packet is formatted something like this -
Code:
.-------------------------------. | _____________________________|_____________________________ | : : | : .----. .------. : | : | __|_ | ____|____ : 12 | : 1 | : : 2 | : : : .----.--^-.----.--^-.----.----.--^-.----.----.----.----.----.----.----.----.----. | 03 | 0c | d1 | 01 | 08 | 54 | 02 | e | n | O | m | e | g | a | fe | 00 | `----^----^----^----^--.-^----^----^----^----^----^----^----^----^----^----^----' 8 | :_______________________________________: | | `--------------------------'
Code:
namLen = data[4]namPre = data[6]s = ""for n in range(7 + namPre, 7 + namLen - namPre + 1): s += chr(data[n])print(s)
Statistics: Posted by hippy — Wed Dec 25, 2024 6:04 pm