编程语言
首页 > 编程语言> > Python字符串学习笔记

Python字符串学习笔记

作者:互联网

# encode  编码   decode  解码

#编码
msg = '刘小明'
result =msg.encode()
print(result)
#解码
print(result.decode())

 

startswith判断是否以xxx开头的,或者endswith判断是否以xxx结尾的
应用: 文件上传 只能上传图片(jpg,png,bmp,gif)
filename = '笔记.doc'

result = filename.endswith('doc')
print(result)

s = 'hello'
result = s.startswith('h')
print(result)

 

 

 

标签:startswith,Python,笔记,filename,decode,print,endswith,result,字符串
来源: https://www.cnblogs.com/lxmalg/p/11758291.html