Summarizing previous replies (for python 3.*):
...
try:
result_str = bytes(fullDataRead).decode()
except Exception as e:
print('TODO: add handling of exception: ' + str(e)) # add here your exception-handling if needed
result_str = 'Exception by retrieving the string!'
print(result_str)