Python中的字符串标点符号

在本教程中,我们将学习string.punctuation字符串。

字符串标点符号是在Python3字符串 模块中预定义的。它包含所有字符作为字符串。我们可以在程序中的任何地方使用它。

示例

# importing the string module
import string
# printing the punctuation
print(string.punctuation)

输出结果

如果运行上面的代码,则将得到以下结果。

!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~

结论

我们可以使用它来生成强密码。试试看。如果您对本教程有任何疑问,请在评论部分中提及。