Python| sys.getdefaultencoding() 方法
这个sys 模块提供对解释器使用或维护的一些变量以及与解释器强交互的函数的访问。它提供了有关Python解释器的常量、函数和方法的信息。它可用于操作Python运行时环境。
sys.getdefaultencoding()
方法用于获取 Unicode 实现使用的当前默认字符串编码。
Syntax: sys.getdefaultencoding()
Parameter: This method accepts no parameter.
Return Value: This method returns the current default string encoding used by the Unicode implementation.
示例 #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
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。