标签:python
#coding=utf-8#原始字符串 --打印所有的字符不进行转义
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
原文地址:http://blog.51cto.com/shouhouzhe/2085308