首页 > 代码库 > 微信之初学者:字符串
微信之初学者:字符串
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‘‘\\‘)#结尾以反斜线
微信之初学者:字符串
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。