📜  Python| sys.getdefaultencoding() 方法

📅  最后修改于: 2022-05-13 01:55:40.271000             🧑  作者: Mango

Python| sys.getdefaultencoding() 方法

这个sys 模块提供对解释器使用或维护的一些变量以及与解释器强交互的函数的访问。它提供了有关Python解释器的常量、函数和方法的信息。它可用于操作Python运行时环境。

sys.getdefaultencoding()方法用于获取 Unicode 实现使用的当前默认字符串编码。

示例 #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) 
输出:
utf-8