原文链接:http://www.juzicode.com/archives/3808
错误提示:
使用字符串的大写转换函数时提示AttributeError: ‘str’ object has no attribute ‘uper’
#juzicode.com/vx:桔子code
s = 'www.juzicode.com'
s2 = '桔子code'
print(s.lower())
print(s2.uper())
www.juzicode.com
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-27-7d7c604fd002> in <module>
3 s2 = '桔子code'
4 print(s.lower())
----> 5 print(s2.uper())
AttributeError: 'str' object has no attribute 'uper'
错误原因:
1、大写转换函数名称错误,应为upper()
解决方法:
1、 大写转换函数名称错误,应为upper()
#juzicode.com/vx:桔子code
s = 'www.juzicode.com'
s2 = '桔子code'
print(s.lower())
print(s2.upper())
www.juzicode.com
桔子CODE
扩展内容:
如果本文还没有完全解决你的疑惑,你也可以在微信公众号“桔子code”后台给我留言,欢迎一起探讨交流。