码迷,mamicode.com
首页 > 编程语言 > 详细

Python字符串操作

时间:2018-03-11 21:40:31      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:python

#coding=utf-8
#转义字符
#\n -回车
#\' -'号
#\" -双引号
#\t -制表符
#\\ -\斜杠
print("Hello there !\nHow are you?\nI\'m doing fine。\n\"My name is wangyongke.\"")
print("\t Hello,I\'m here.")
print("Hello,this is \\.")


#原始字符串 --打印所有的字符不进行转义
print(r"Hello there!\nHow are you!")
print(r'Hello,\n \t \\ \'\"')


#三重引号  3个单引号或者双引号
#\\ 在三重引号中也转义
print('''
Hello, there!
 How are you?
    I'm doing fine.
    \\\\\\\\\\\\
''')
#三重引号作为多行注释如下
'''
eg:
print('Hello')
'''





#字符串下标和切片
str01='wang yongke'
print(str01[0:4])
print(len(str01))
j=0
for i in str01:
    print(i,end="")
    print(j,end="")
    j+=1


#字符in and not in 操作
print('\n')
print('w' in str01)
print('gg' not in str01)



Python字符串操作

标签:python

原文地址:http://blog.51cto.com/shouhouzhe/2085308

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!