当我执行下面的代码时,我只是得到一个空白屏幕,没有任何输出,如何纠正?#Program to find the length of the BMW using the len() function in Python!cars = ['bmw']len(cars)
4 回答
斯蒂芬大帝
TA贡献1827条经验 获得超8个赞
如果您想str通过执行脚本来打印 Python 中的长度:
s = 'BMW'
print(len(s))
如果要car通过执行脚本来打印列表的长度:
print(len(cars))
如果您将这些直接提供给您的 Python 解释器,这也将起作用:
Python 3.6.9 (default, Nov 7 2019, 10:44:02)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> cars = ['BMW']
>>> len(cars)
1
>>>
添加回答
举报
0/150
提交
取消