蟒蛇编程中的长度

当我执行下面的代码时,我只是得到一个空白屏幕,没有任何输出,这怎么能纠正?


#Program to find the length of the BMW using the len() function in Python!


cars = ['bmw']


len(cars)


慕尼黑的夜晚无繁华
浏览 106回答 4
4回答

宝慕林4294392

您应该尝试:print(len(cars))

慕仙森

您需要打印它:cars = ['bmw'] print(len(cars))

小唯快跑啊

这仅在您运行笔记本或必须用于向终端显示时显示结果:printprint(len(cars))

FFIVE

如果要通过执行脚本来打印 Python 的长度:strs = 'BMW'print(len(s))如果要通过执行脚本来打印列表的长度:carprint(len(cars))如果您将这些内容直接提供给Python解释器,这也将起作用:Python 3.6.9 (default, Nov  7 2019, 10:44:02)[GCC 8.3.0] on linuxType "help", "copyright", "credits" or "license" for more information.>>> cars = ['BMW']>>> len(cars)1>>>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python