Python 中的 string.punctuation
在本教程中,我们将学习了解 string.punctuation 字符串。
字符串 punctuation 在 Python 3 的 string 模块中预定义。它将所有字符作为字符串包含在内。我们可以在程序的任何位置使用它。
示例
# importing the string module import string # printing the punctuation print(string.punctuation)
输出
如果你运行上述代码,将会得到以下结果。
!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
结论
我们可以使用它来生成强密码。尝试一下。如果你在教程中遇到任何疑问,请在注释部分提出。
广告