当前位置:   article > 正文

调用 Python 函数遗漏括号 ( )

调用 Python 函数遗漏括号 ( )

调用 Python 函数遗漏括号

1. Example - error

name = "Forever Strong"
print(name.upper())
print(name.lower)
  • 1
  • 2
  • 3
FOREVER STRONG
<built-in method lower of str object at 0x0000000002310670>
 
 
------------------
(program exited with code: 0)
 
请按任意键继续. . .
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

在这里插入图片描述

2. Example - correction

name = "Forever Strong"
print(name.upper())
print(name.lower())
  • 1
  • 2
  • 3

在这里插入图片描述

References

[1] Yongqiang Cheng, https://yongqiang.blog.csdn.net/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/148452
推荐阅读
相关标签
  

闽ICP备14008679号