摘要:
在Python普通字符串中 在Python中,我们用''来转义某些普通字符,使其成为特殊字符,比如 In [1]: print('abc\ndef') # '\n'具有换行的作用 abc defg In [2]: print('abc\tdef') # '\t'具有制位符的作用 abc defg 我 阅读全文
posted @ 2020-08-06 21:05
Python探索牛
阅读(5351)
评论(0)
推荐(0)