Python3 學習之02 (string 使用)

  1. string 基本
#!/usr/bin/env python3
# -*- coding: utf-8 -*-


print("----------------------------------------------")
print("#以首字母大写的方式显示每个单词,其他小写,可用 title() 函数")
city_name=" zhu hAi "
print("city_name: [%s]"  % city_name)
print("city_name.title() : %s"  % city_name.title())

print("#将字符串转大写、小写 用 upper()、lower()函数")
print("city_name.upper() : %s"  % city_name.upper())
print("city_name.lower() : %s"  % city_name.lower())
print("#剔除字符串左边、右边、两边的空格分别用 lstrip()、rstrip()、strip() 函数")
print("city_name.lstrip(): [%s]"  % city_name.lstrip())
print("city_name.rstrip(): [%s]"  % city_name.rstrip())
print("city_name.strip(): [%s]"  % city_name.strip())

nums="123456789"
print("nums:%s"  % nums)
print("nums[0]:%s , nums[1]:%s"  % (nums[0],nums[1]) )

print("#对字符串进行切片,获取一段子串。用冒号分隔两个索引,形式为变量[头下标:尾下标]")
print("nums[1:5]:%s"  % nums[1:5])
print("nums[:]:%s"  % nums[:])
print("nums[5:]:%s"  % nums[5:])
print("nums[-3:-1]:%s"  % nums[-3:-1])

print("#ord()函数获取字符的整数表示,chr()函数把编码转换为对应的字符")
print("ord('A'):%s" % ord('A'))
print("chr(65):%s" % chr(65))

print("ord('中'):%s , ord('文'):%s" % (ord('中'),ord('文')))
print("hex(ord('中')):%s , hex(ord('文')):%s" % (hex(ord('中')),hex(ord('文')) ) )
print("chr(20013):%s , chr(25991):%s" % (chr(20013),chr(25991)))

print("#知道字符的整数编码,还可以用十六进制这么写str")
chinese='\u4e2d\u6587'
print("chinese:%s"  % chinese)

print("#Python的字符串类型是str,在内存中以Unicode表示,一个字符对应若干个字节。如果要在网络上传输,或者保存到磁盘上,就需要把str变为以字节为单位的bytes")
print("#英文的str可以用ASCII编码为bytes,内容是一样的,含有中文的str可以用UTF-8编码为bytes")
byte_abc='ABC'.encode('ascii')
byte_chinese='中文'.encode('utf-8')
print("byte_abc:%s , len(byte_abc):%d"  % (byte_abc,len(byte_abc)) )
print("byte_chinese:%s , len(byte_chinese):%d"  % (byte_chinese,len(byte_chinese) ))
print("#要把bytes变为str,就需要用decode()方法")

print("byte_abc.decode('ascii'):%s , len:%d"  % (byte_abc.decode('ascii'),len(byte_abc.decode('ascii')) ))
print("byte_chinese.decode('utf-8'):%s , len:%d"  % (byte_chinese.decode('utf-8') , len(byte_chinese.decode('utf-8'))  ))

#运行结果:
----------------------------------------------
#以首字母大写的方式显示每个单词,其他小写,可用 title() 函数
city_name: [ zhu hAi ]
city_name.title() :  Zhu Hai 
#将字符串转大写、小写 用 upper()、lower()函数
city_name.upper() :  ZHU HAI 
city_name.lower() :  zhu hai 
#剔除字符串左边、右边、两边的空格分别用 lstrip()、rstrip()、strip() 函数
city_name.lstrip(): [zhu hAi ]
city_name.rstrip(): [ zhu hAi]
city_name.strip(): [zhu hAi]
nums:123456789
nums[0]:1 , nums[1]:2
#对字符串进行切片,获取一段子串。用冒号分隔两个索引,形式为变量[头下标:尾下标]
nums[1:5]:2345
nums[:]:123456789
nums[5:]:6789
nums[-3:-1]:78
#ord()函数获取字符的整数表示,chr()函数把编码转换为对应的字符
ord('A'):65
chr(65):A
ord('中'):20013 , ord('文'):25991
hex(ord('中')):0x4e2d , hex(ord('文')):0x6587
chr(20013):中 , chr(25991):文
#知道字符的整数编码,还可以用十六进制这么写str
chinese:中文
#Python的字符串类型是str,在内存中以Unicode表示,一个字符对应若干个字节。如果要在网络上传输,或者保存到磁盘上,就需要把str变为以字节为单位的bytes
#英文的str可以用ASCII编码为bytes,内容是一样的,含有中文的str可以用UTF-8编码为bytes
byte_abc:b'ABC' , len(byte_abc):3
byte_chinese:b'\xe4\xb8\xad\xe6\x96\x87' , len(byte_chinese):6
#要把bytes变为str,就需要用decode()方法
byte_abc.decode('ascii'):ABC , len:3
byte_chinese.decode('utf-8'):中文 , len:2

你可能感兴趣的:(Python3 學習之02 (string 使用))