Python 中的 string.whitespace


在本教程中,我们将了解string.whitespace

字符串whitespace在Python 3 的string 模块中进行了预定义。它包含空格、制表符、换行符、回车符、换页符垂直制表符

示例

 实时演示

# importing the string module
import string
# printing a string
print("Hello")
# whitespace printing
print(string.whitespace)
# printing a string
print('tutorialspoint')

输出

如果你运行以上代码,就会得到以下结果。

Hello

tutorialspoint

结论

如果本教程存在任何疑问,请在评论部分中提出。

更新日期:2020 年 7 月 11 日

324 次浏览

开始你的 职业生涯

完成课程即可获得认证

开始
广告