Thursday, July 11, 2024
HomeLanguagesPythonPython | sys.getdefaultencoding() method

Python | sys.getdefaultencoding() method

This sys module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter. It provides information about constants, functions and methods of python interpreter. It can be used for manipulating Python runtime environment.

sys.getdefaultencoding() method is used to get the current default string encoding used by the Unicode implementation.

Syntax: sys.getdefaultencoding()

Parameter: This method accepts no parameter.

Return Value: This method returns the current default string encoding used by the Unicode implementation.

Example #1 :




# Python program to explain sys.getdefaultencoding() method 
      
# Importing sys module 
import sys 
  
# Using sys.getdefaultencoding() method 
encoding = sys.getdefaultencoding() 
  
# Print the current string encoding used 
print(encoding) 


Output:

utf-8
Last Updated :
07 Aug, 2019
Like Article
Save Article

<!–

–>

Similar Reads
Related Tutorials
Calisto Chipfumbu
Calisto Chipfumbuhttp://cchipfumbu@gmail.com
I have 5 years' worth of experience in the IT industry, primarily focused on Linux and Database administration. In those years, apart from learning significant technical knowledge, I also became comfortable working in a professional team and adapting to my environment, as I switched through 3 roles in that time.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments