1. 程式人生 > >python之路 第二篇 數據類型詳解及其方法

python之路 第二篇 數據類型詳解及其方法

字符 引號 print 成員 移除 join att pri str

字符串

#作用:描述名字,性別,國籍,地址等信息

#定義:在單引號\雙引號\三引號內,由一串字符組成
name=‘Matthew‘

#優先掌握的操作:
#1、按索引取值(正向取+反向取) :只能取
#2、切片(顧頭不顧尾,步長)
#3、長度len
#4、成員運算in和not in

#5、移除空白strip
#6、切分split
#7、循環
 

用法實例

#strip
name = ‘**Matthew*‘
print(name.strip(*))
print(name.lstrip(*))
print(name.rstrip(*))

#lower,upper
name = ‘Matthew‘
print(name.lower())
print(name.upper())

#startwith,endwith
name = ‘Matthew‘
print(name.endwith(‘w‘))
print(name.startwith(‘M‘))

#format
res = ‘{},{},{}‘.format(‘Matthew‘,18,‘male‘)
res = ‘{0},{1},{0}‘.format(‘Matthew‘,18,‘male‘)
res = ‘{name},{age},{sex}‘.format(name=‘Matthew‘,age=18,sex=‘male‘)

#split
name = ‘Matthew_male‘
name.split(‘_‘)

#join
tag = ‘‘
print(tag.join({‘Matthew‘,‘say‘,‘hello‘,‘world‘})

#replace
msg = ‘Alex is a boy‘
print(msg.replace(‘boy‘,‘girl‘))


python之路 第二篇 數據類型詳解及其方法