赞
踩
有的时候需要对字符串的某个字符进行大小写的转换,之前经常使用到的是ord函数进行转换,在python中有一个比较简单的方法是调用upper或者是lower函数对其进行转换
if __name__ == '__main__': s = "abCdefg" print(s[0].upper()) print(s[2].lower())