调用 Python 函数遗漏括号
- 1. Example - error
- 2. Example - correction
- References
1. Example - error
name = "Forever Strong"
print(name.upper())
print(name.lower)
FOREVER STRONG
<built-in method lower of str object at 0x0000000002310670>
------------------
(program exited with code: 0)
请按任意键继续. . .

2. Example - correction
name = "Forever Strong"
print(name.upper())
print(name.lower())

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









![[AutoSar]BSW_Com1 Can通信入门](https://img-blog.csdnimg.cn/direct/12c52b1869b144c0bb2232c082feeccc.png)








