在Python3中,string.octdigits是用作字符串常量的预初始化字符串。在Python中,string.octdigits
将给出八进制字母“ 01234567”。
用法: string.octdigits
参数:由于它不是函数,因此不带任何参数。
返回值:返回所有的十进制数字字母。
注意:确保导入字符串库函数以便使用string.octdigits
代码1:
# import string library function
import string
# Storing the value in variable result
result = string.octdigits
# Printing the value
print(result)
输出:
01234567
代码2:给定代码检查字符串输入是否仅包含八进制数字字母
# importing string library function
import string
# Function checks if input string
# has only octdigits or not
def check(value):
for letter in value:
# If anything other than octdigit
# letter is present, then return
# False, else return True
if letter not in string.octdigits:
return False
return True
# Driver Code
input1 = "01234567"
print(input1, "--> ", check(input1))
input2 = "abcdefABCDEF"
print(input2, "--> ", check(input2))
input3 = "abcdefghGEEK"
print(input3, "--> ", check(input3))
input4 = "0123"
print(input3, "--> ", check(input4))
input5 = "567"
print(input3, "--> ", check(input5))
输出:
01234567 --> True abcdefABCDEF --> False abcdefghGEEK --> False abcdefghGEEK --> True abcdefghGEEK --> True
应用范围:
字符串常数八位数字可以在许多实际应用中使用。让我们看一段代码,说明如何使用数字生成给定大小的强随机密码。
# Importing random to generate
# random string sequence
import random
# Importing string library function
import string
def rand_pass(size):
# Takes random choices from
# string.octdigits
generate_pass = ''.join([random.choice(string.octdigits)
for n in range(size)])
return generate_pass
# Driver Code
password = rand_pass(10)
print(password)
输出:
5077306643
相关用法
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 string.octdigits in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。