在本教程中,我们将学习string.octdigits字符串。
字符串八位数字是在Python3的字符串模块中预定义的。只要从字符串模块访问它,就可以在程序中随时使用八进制数字。
# importing the string module import string # printing the octal digits string print(string.octdigits)
输出结果
如果运行上面的代码,则将得到以下结果。
01234567
该string.octdigits是一个字符串。您可以通过执行以下程序来实现。
# importing the string module import string # printing the octal digits string print(type(string.octdigits))
输出结果
如果运行上面的代码,则将得到以下结果。
<class 'str'>