在本教程中,我们将学习string.whitespace。
字符串空白是在Python3的字符串模块中预定义的。如果包含空格,制表符,换行符,返回符,换页符和垂直制表符。
# importing the string module
import string
# printing a string
print("Hello")
# whitespace printing
print(string.whitespace)
# printing a string
print('nhooo')输出结果
如果运行上面的代码,则将得到以下结果。
Hello nhooo
如果您对本教程有任何疑问,请在评论部分中提及。