Python Programming - Standard Libraries - Discussion
Discussion Forum : Standard Libraries - General Questions (Q.No. 90)
90.
What does the
codecs
module in Python provide support for?
Answer: Option
Explanation:
import codecs
# Example usage of codecs module for encoding and decoding text
text = "Hello, World!"
encoded_text = codecs.encode(text, 'rot_13')
decoded_text = codecs.decode(encoded_text, 'rot_13')
print(decoded_text)
Discussion:
Be the first person to comment on this question !
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers