微信之初学者:字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信之初学者:字符串相关的知识,希望对你有一定的参考价值。
1.单引号和双引号
print(‘hello world‘) print("hello world")
2转义引号
print("let‘s go!") print(‘let\‘s go!‘) print(‘let\‘s say "hello world"‘)
3字符串拼接
print(‘hello,‘ + ‘world‘)#注意hello后面的逗号,
4长字符串的输入
print(‘‘‘Where there is a will,here is a way, you jump ,I jump. to be or not to be,is a question. let‘s go‘‘‘)#在这种模式里,不要在需要反斜线来转义
5原始字符串
print(‘C:\\nasd\\asd\\q\\asd‘) print(r‘C:\nasd\asd\q\asd‘) print(r‘C:\as\asd\asd\asd‘‘\\‘)#结尾以反斜线
以上是关于微信之初学者:字符串的主要内容,如果未能解决你的问题,请参考以下文章
坑爹微信之读取PKCS12流时出现的java.io.IOException: DerInputStream.getLength