該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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。