该sys模块提供对解释器使用或维护的某些变量以及与解释器强烈交互的函数的访问。它提供有关python解释器的常量,函数和方法的信息。它可以用于操纵Python运行时环境。
sys.getdefaultencoding()
方法用于获取Unicode实现使用的当前默认字符串编码。
用法: 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
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os.fchmod()用法及代码示例
- Python PIL getpixel()用法及代码示例
- Python PIL putpixel()用法及代码示例
- Python os.sysconf()用法及代码示例
- Python os.confstr()用法及代码示例
- Python os._exit()用法及代码示例
- Python cmath.log()用法及代码示例
- Python Tensorflow cos()用法及代码示例
- Python sympy.rf()用法及代码示例
注:本文由纯净天空筛选整理自Rajnis09大神的英文原创作品 Python | sys.getdefaultencoding() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。