俊秀溪流

文章
4
资源
0
加入时间
2年10月21天

编译错Inconsistent accessibility

Inconsistent accessibility: parameter type 'Manning.MyPhotoAlbum.Photograph[]' is less accessible than method 'Manning.MyPhotoAlbum.PhotoAlbum.CopyTo(Manning.MyPhotoAlbum.Photograph[], int)' 环境:vs

Python之字符串处理库、文件及目录操作、时间日期

1.字符串处理库1.1 查找(1)find():检测某个子串是否包含在这个字符串中,如果在则返回这个子串开始的位置下标,否则返回-1 --语法:字符串序列.find(子串,开始位置,结束位置)。开始位置和结束位置可以省略不写 --rfind():和find()功能相同,但是查找方向为右侧开始s = 'jack love rose,im rose'f1 = s.find('rose')f2 = s.rfind('rose')print(f1, f2)# 结果为:10....