Saturday, November 16, 2024
Google search engine
HomeLanguagesPython | 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
Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments