Computer Science, asked by nithish2097, 10 months ago

Describe the decode (encoding=’UTF8′, errors=’ strict’ )

Answers

Answered by rahul9173
0

Answer:

I don't know what the question about

Answered by brokendreams
1

decode (encoding=’UTF8′, errors=’ strict’ )

  • Python string method decode() decodes the string utilizing the codec recorded for encoding. It defaults to the default string encoding.
  • encoding − This is the encoding to be practiced, errors − This may be provided to produce a various error handling scheme.
  • The default for errors is 'strict', indicating that encoding errors suggest a Unicode Error.
  • The return value of this function is Decoded string.
  • Custom codecs may encode and decode within arbitrary types, but some module features are assigned to use particularly with text encoding, or with codecs that encode to bytes.

Learn more on decode:

https://brainly.in/question/13803475

Write a program to decode text using run length decoding

Similar questions