Python错误集锦:字符串的大写转换函数AttributeError: ‘str’ object has no attribute ‘uper’

原文链接: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

扩展内容:

  1. Python基础教程2b–数据类型-string(字符串)

如果本文还没有完全解决你的疑惑,你也可以在微信公众号“桔子code”后台给我留言,欢迎一起探讨交流。

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注