#已知stra = 'wqedsfsdrfweedqwedqw'#1. 如何获取最后两个字符#2. 如何获取第二个和第三个字符stra = 'wqedsfsdrfweedqwedqw'print(stra[-2:])print(stra[1:3])