# **********************************************
startswith() endswith()
str='jdksdjksd'
print(str.startswith('j'))
print(str.startswith('a'))
# 应用:文件上传,如上传jpg.png
filename='笔记.doc'
res=filename.endswith('doc')
print(res)
while True:
path=input('请选择文件:') #D:\Python\codesjkd_png
p=path.rfind('\\')
pic=path[p+1:]
# print(pic)
if pic.endswith('png') or pic.endswith('jpg'):
print('文件格式正确,可以上传!')
break
else:
print('文件格式错误,不能上传!')