当我执行下面的代码时,我只是得到一个空白屏幕,没有任何输出,这怎么能纠正?#Program to find the length of the BMW using the len() function in Python!cars = ['bmw']len(cars)
4 回答
FFIVE
TA贡献1797条经验 获得超6个赞
如果要通过执行脚本来打印 Python 的长度:str
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
提交
取消