string.octdigits 在 Python 中
本教程中,我们将学习有关 string.octdigits 字符串。
在 Python3 的 string 模块中预定义了字符串 octdigits。我们可以直接通过访问 string 模块在程序中随时使用八进制数字。
示例
# 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'>
总结
如果你对教程有任何疑问,请在评论部分中提及。
广告