Python中的string.octdigits

在本教程中,我们将学习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'>

结论